diff --git a/.gitignore b/.gitignore index 129f6d67..cc535e85 100644 --- a/.gitignore +++ b/.gitignore @@ -8,8 +8,9 @@ __pycache__/ # C extensions *.so - -# Distribution / packaging +*.err +*.out +r Distribution / packaging .Python build/ develop-eggs/ diff --git a/data/failed_runs.txt b/data/failed_runs.txt new file mode 100644 index 00000000..bef80835 --- /dev/null +++ b/data/failed_runs.txt @@ -0,0 +1 @@ +[Timestamp('2021-01-26 00:00:00'), 3] diff --git a/data/generate_herbie_forecasts.py b/data/generate_herbie_forecasts.py new file mode 100644 index 00000000..2a7ef2cd --- /dev/null +++ b/data/generate_herbie_forecasts.py @@ -0,0 +1,254 @@ +import pandas as pd +#from pvlib.forecast import HRRR +from herbie import Herbie + +from herbie.toolbox import EasyMap, pc +from herbie import paint +import numpy as np +import matplotlib.pyplot as plt +import shutil +from dask import delayed +import os +import dask +import logging +import time +from dask.distributed import Client, wait, as_completed +import pvdrdb_tools +import boto3 +from dask_jobqueue import SLURMCluster +import socket +from dask.distributed import Client +from collections import Counter + + +@delayed +def pull_herbie_hrr_data(date, time_horizon, aws_profile): + """ + Function for pulling Herbie data, which we will be parallelizing via Dask. + """ + for i in range(3): + try: + logger.info(f"Processing values: {date} {time_horizon} hr time horizon...") + H = Herbie(date, + model="hrrr", + product="prs", + fxx=time_horizon + ) + file = H.download() + #:TCDC:entire atmosphere:anl: overall cloud cover + #:UGRD:80 m above ground:anl: u-component wind speed (80 m above ground) + #:VGRD:80 m above ground:anl: v-component wind speed (80 m above ground) + #:RH:2 m above ground:anl: relative humidity at surface + #:TMP:surface:anl: surface temperature + #:PRES:surface:anl: surface pressure + #:DPT:2 m above ground:anl: dew point + # Full list of options: https://home.chpc.utah.edu/~u0553130/Brian_Blaylock/HRRR_archive/hrrr_sfc_table_f00-f01.html + tags = [":TCDC:entire atmosphere:" + str(time_horizon) + " hour fcst", + ":UGRD:80 m above ground:" + str(time_horizon) + " hour fcst", + ":VGRD:80 m above ground:" + str(time_horizon) + " hour fcst", + ":RH:2 m above ground:" + str(time_horizon) + " hour fcst", + ":PRES:surface:" + str(time_horizon) + " hour fcst", + ":TMP:surface:" + str(time_horizon) + " hour fcst", + ":DPT:2 m above ground:" + str(time_horizon) + " hour fcst"] + master_pred_list = list() + for tag in tags: + ds = H.xarray(tag,remove_grib=True) + # get all of the closest forecasts to the WECC node points + dsi = ds.herbie.nearest_points(points=points, + names=names) + # Build out a dataframe for the predictions + pred_df = pd.DataFrame() + pred_df['wind_site_name'] = list(dsi.point.values) + pred_df['point_latitude'] = list(dsi.point_latitude.values) + pred_df['point_longitude'] = list(dsi.point_longitude.values) + pred_df['tag'] = tag + pred_df['forecast_time'] = date + pred_df['forecast_horizon_hrs'] = time_horizon + if "d2m" in dsi: + pred_df['value'] = list(dsi.d2m.values) + elif "tcc" in dsi: + pred_df['value'] = list(dsi.tcc.values) + elif "u" in dsi: + pred_df['value'] = list(dsi.u.values) + elif "v" in dsi: + pred_df['value'] = list(dsi.v.values) + elif "r2" in dsi: + pred_df['value'] = list(dsi.r2.values) + elif "sp" in dsi: + pred_df['value'] = list(dsi.sp.values) + elif "t" in dsi: + pred_df['value'] = list(dsi.t.values) + master_pred_list.append(pred_df) + master_pred_df = pd.concat(master_pred_list) + master_pred_df.to_csv('s3://pvdrdb-transfer/REGROW/herbie_forecasts/raw/'+ + date.strftime("%Y-%m-%d_%H_%M_%S") + "_" + str(time_horizon) + "hr.csv", + index=False, + storage_options=aws_profile) + logger.info(f"Finished processing {date} {time_horizon} hr time horizon...") + os.remove(file) + return master_pred_df + except Exception as e: + print(e) + logger.info(e) + time.sleep(5) # backoff + logger.info("Download failed for {date} {time_horizon} hr time horizon...") + return + +@delayed +def pull_herbie_gefs_data(date, time_horizon, aws_profile): + """ + Similar function for Herbie GEFS data. + """ + for i in range(3): + try: + logger.info(f"Processing values: {date} {time_horizon} hr time horizon...") + H = Herbie(date, + model="gefs", + fxx=time_horizon, + product="atmos.5b", + member="p01", + ) + file = H.download() + tags = ["UGRD:80 m", + "VGRD:80 m", + "TCDC", + "TMP:surface", + "DPT:2 m"] + specific_tag_names = [":TCDC:475 mb:", + ":UGRD:80 m above ground:", + ":VGRD:80 m above ground:", + "TMP:surface:", + "DPT:2 m above ground:"] + master_pred_df= pd.DataFrame() + for tag in tags: + tag_df=H.inventory(tag) + tag_df = tag_df.reset_index(drop=True) + tag_match = [x for x in specific_tag_names if + tag_df['variable'].iloc[0] in x][0] + index_val = tag_df[tag_df['search_this'].str.contains(tag_match)].iloc[0].name + ds = H.xarray(tag, remove_grib=True) + if isinstance(ds, list): + ds = ds[int(index_val)] + predictions = list() + for point in points: + if "d2m" in ds: + pred = ds['d2m'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "tcc" in ds: + pred = ds['tcc'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "u" in ds: + pred = ds['u'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "v" in ds: + pred = ds['v'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "r2" in ds: + pred = ds['r2'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "sp" in ds: + pred = ds['sp'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + elif "t" in ds: + pred = ds['t'].sel(longitude=point[0], + latitude=point[1], + method='nearest').values.reshape(1) + else: + break + predictions.append(pred) + predictions = list(np.concatenate(predictions)) + pred_df = pd.DataFrame() + pred_df['longitude'] = [point[0] for point in points] + pred_df['latitude'] = [point[1] for point in points] + pred_df['forecast_time'] = date + pred_df['time_horizon_hrs'] = time_horizon + pred_df['tag'] = tag + pred_df['value'] = predictions + master_pred_df = pd.concat([master_pred_df, pred_df]) + master_pred_df.to_csv('s3://pvdrdb-transfer/REGROW/herbie_forecasts/raw/' + + date.strftime("%Y-%m-%d_%H_%M_%S") + "_" + str(time_horizon) + "hr.csv", + index=False, + storage_options=aws_profile) + # Delete the file in question (to save storage space) + os.remove(file) + except Exception as e: + print(e) + logger.info(e) + time.sleep(5) # backoff + logger.info("Download failed for {date} {time_horizon} hr time horizon...") + return + + + +forecast_dir = "C:/Users/kperry/data/" +if __name__ == "__main__": + # Connect to the db and get the associated AWS creds + pvr = pvdrdb_tools.PVDRDBQuery() + pvr.connectToDB() + # Connect to S3 and get all of the files that have already been inserted. + # we want to omit these files from new runs, and only run new cases + s3_client = boto3.client('s3', + aws_access_key_id=pvr.aws['key'], + aws_secret_access_key=pvr.aws['secret']) + paginator = s3_client.get_paginator('list_objects_v2') + pages = paginator.paginate(Bucket="pvdrdb-transfer", Prefix="REGROW/herbie_forecasts/raw/") + file_keys = list() + for page in pages: + if 'Contents' in page: + for obj in page['Contents']: + if obj['Key'] != "REGROW/herbie_forecasts/raw/": + file_keys.append(obj['Key']) + existing_files = [os.path.basename(x) for x in file_keys] + # Read in the nodes we want to forecast on + df = pd.read_csv("uswtdb.csv") + df['Lat'] = df.groupby("name")['latitude'].transform('mean') + df['Long'] = df.groupby("name")['longitude'].transform('mean') + df = df[['name', 'Lat', "Long"]].drop_duplicates() + points = [(y,x) for x,y in zip(df['Lat'], df['Long'])] + names = list(df['name']) + master_prediction_df = pd.DataFrame() + # Create a logger + logger = logging.getLogger(__name__) + logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.DEBUG) + # Create a console handler and set its level + ch = logging.StreamHandler() + ch.setLevel(logging.INFO) + # Create a formatter and add it to the handler + formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + ch.setFormatter(formatter) + # Add the handler to the logger + logger.addHandler(ch) + # Do HRR up to 18 hours first (2 hour forecasts) + # Break into monthly chunks so the task graph stays manageable + date_chunks = pd.date_range("2018-01-01", "2022-12-31", freq="MS") # monthly start dates + + for chunk_start in date_chunks: + chunk_end = chunk_start + pd.offsets.MonthEnd(1) + dates = pd.date_range(chunk_start, chunk_end, freq="1h") + + # HRRR + delayed_results = [] + for date in dates: + for time_horizon in range(1, 19, 1): + if (date.strftime("%Y-%m-%d_%H_%M_%S") + "_" + str(time_horizon) + "hr.csv") not in existing_files: + hrrr_pred_df = delayed(pull_herbie_hrr_data)(date, time_horizon, pvr.aws) + delayed_results.append(hrrr_pred_df) + if delayed_results: + logger.info(f"Computing {len(delayed_results)} HRRR tasks for {chunk_start.strftime('%Y-%m')}") + dask.compute(*delayed_results, num_workers=20) + + # GEFS + delayed_results = [] + for date in dates: + for time_horizon in range(24, 78, 6): + if (date.strftime("%Y-%m-%d_%H_%M_%S") + "_" + str(time_horizon) + "hr.csv") not in existing_files: + delayed_results.append(delayed(pull_herbie_gefs_data)(date, time_horizon, pvr.aws)) + if delayed_results: + logger.info(f"Computing {len(delayed_results)} GEFS tasks for {chunk_start.strftime('%Y-%m')}") + dask.compute(*delayed_results, num_workers=20) diff --git a/data/slurm/slurm.sh b/data/slurm/slurm.sh new file mode 100644 index 00000000..12bb9512 --- /dev/null +++ b/data/slurm/slurm.sh @@ -0,0 +1,21 @@ +#!/bin/bash +#SBATCH --job-name=herbie_forecasts +#SBATCH --account=pvfleets24 +#SBATCH --partition=standard +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=20 +#SBATCH --mem=32G +#SBATCH --time=24:00:00 +#SBATCH --output=/kfs2/projects/pvfleets24/repos/regrow/data/slurm_outputs/herbie_%j.out +#SBATCH --error=/kfs2/projects/pvfleets24/repos/regrow/data/slurm_outputs/herbie_%j.err +#SBATCH --mail-type=BEGIN,END,FAIL +#SBATCH --mail-user=kirsten.perry@nlr.gov + +ml mamba +mamba activate /kfs2/projects/pvfleets24/envs/regrow + + +# Run the script +cd /kfs2/projects/pvfleets24/repos/regrow/data +python generate_herbie_forecasts.py diff --git a/data/slurm_outputs/herbie_13573894.err b/data/slurm_outputs/herbie_13573894.err new file mode 100644 index 00000000..2178ca5d --- /dev/null +++ b/data/slurm_outputs/herbie_13573894.err @@ -0,0 +1,177709 @@ +2026-04-29 08:58:59,700 - __main__ - INFO - Computing 12978 HRRR tasks for 2018-01 +2026-04-29 08:59:06,234 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 15 hr time horizon... +2026-04-29 08:59:06,235 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 2 hr time horizon... +2026-04-29 08:59:06,236 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 16 hr time horizon... +2026-04-29 08:59:06,237 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 1 hr time horizon... +2026-04-29 08:59:06,239 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 8 hr time horizon... +2026-04-29 08:59:06,239 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 17 hr time horizon... +2026-04-29 08:59:06,240 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 17 hr time horizon... +2026-04-29 08:59:06,241 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 9 hr time horizon... +2026-04-29 08:59:06,241 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 16 hr time horizon... +2026-04-29 08:59:06,242 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 15 hr time horizon... +2026-04-29 08:59:06,243 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 6 hr time horizon... +2026-04-29 08:59:06,243 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 11 hr time horizon... +2026-04-29 08:59:06,244 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 5 hr time horizon... +2026-04-29 08:59:06,245 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 4 hr time horizon... +2026-04-29 08:59:06,246 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 18 hr time horizon... +2026-04-29 08:59:06,246 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 2 hr time horizon... +2026-04-29 08:59:06,247 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 7 hr time horizon... +2026-04-29 08:59:06,247 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 15 hr time horizon... +2026-04-29 08:59:06,248 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 11 hr time horizon... +2026-04-29 08:59:06,249 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:29,305 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 15 hr time horizon... +2026-04-29 08:59:29,306 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 2 hr time horizon... +2026-04-29 08:59:29,310 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 17 hr time horizon... +2026-04-29 08:59:29,311 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 5 hr time horizon... +2026-04-29 08:59:29,317 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 15 hr time horizon... +2026-04-29 08:59:29,324 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 17 hr time horizon... +2026-04-29 08:59:29,325 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 2 hr time horizon... +2026-04-29 08:59:29,332 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 11 hr time horizon... +2026-04-29 08:59:29,332 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 16 hr time horizon... +2026-04-29 08:59:29,337 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 16 hr time horizon... +2026-04-29 08:59:29,338 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 4 hr time horizon... +2026-04-29 08:59:29,341 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 15 hr time horizon... +2026-04-29 08:59:29,342 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 15 hr time horizon... +2026-04-29 08:59:29,343 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 6 hr time horizon... +2026-04-29 08:59:29,344 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 18 hr time horizon... +2026-04-29 08:59:29,348 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 8 hr time horizon... +2026-04-29 08:59:29,354 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 9 hr time horizon... +2026-04-29 08:59:29,355 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 11 hr time horizon... +2026-04-29 08:59:29,358 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 1 hr time horizon... +2026-04-29 08:59:29,363 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 3 hr time horizon... +2026-04-29 08:59:29,369 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 7 hr time horizon... +2026-04-29 08:59:29,412 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 4 hr time horizon... +2026-04-29 08:59:29,414 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 13 hr time horizon... +2026-04-29 08:59:29,431 - __main__ - INFO - Processing values: 2018-01-21 07:00:00 13 hr time horizon... +2026-04-29 08:59:29,455 - __main__ - INFO - Processing values: 2018-01-14 09:00:00 3 hr time horizon... +2026-04-29 08:59:29,458 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 12 hr time horizon... +2026-04-29 08:59:29,459 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 8 hr time horizon... +2026-04-29 08:59:29,461 - __main__ - INFO - Processing values: 2018-01-09 19:00:00 15 hr time horizon... +2026-04-29 08:59:29,463 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 1 hr time horizon... +2026-04-29 08:59:29,465 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 11 hr time horizon... +2026-04-29 08:59:29,468 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 3 hr time horizon... +2026-04-29 08:59:29,470 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 14 hr time horizon... +2026-04-29 08:59:29,471 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 9 hr time horizon... +2026-04-29 08:59:29,472 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 18 hr time horizon... +2026-04-29 08:59:29,474 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 17 hr time horizon... +2026-04-29 08:59:29,474 - __main__ - INFO - Processing values: 2018-01-26 16:00:00 11 hr time horizon... +2026-04-29 08:59:29,476 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 13 hr time horizon... +2026-04-29 08:59:29,477 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 2 hr time horizon... +2026-04-29 08:59:29,516 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 7 hr time horizon... +2026-04-29 08:59:29,536 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:43,903 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:43,920 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:44,197 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:44,220 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 08:59:44,676 - __main__ - INFO - No valid message found: PosixPath('/home/kperry/data/hrrr/20180111/subset_8818165b__hrrr.t01z.wrfprsf14.grib2') +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:44,684 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 18 hr time horizon... +2026-04-29 08:59:44,686 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:44,718 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 12 hr time horizon... +2026-04-29 08:59:44,718 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:44,974 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 2 hr time horizon... +2026-04-29 08:59:45,001 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,407 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 12 hr time horizon... +2026-04-29 08:59:45,429 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,493 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 14 hr time horizon... +2026-04-29 08:59:45,521 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,548 - __main__ - INFO - Finished processing 2018-01-21 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,568 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,689 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 3 hr time horizon... +2026-04-29 08:59:45,717 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:45,971 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 1 hr time horizon... +2026-04-29 08:59:45,982 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 11 hr time horizon... +2026-04-29 08:59:45,994 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 17 hr time horizon... +2026-04-29 08:59:46,014 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:46,091 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 3 hr time horizon... +2026-04-29 08:59:46,108 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 16 hr time horizon... +2026-04-29 08:59:46,178 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 9 hr time horizon... +2026-04-29 08:59:46,200 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:46,385 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 12 hr time horizon... +2026-04-29 08:59:46,404 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 17 hr time horizon... +2026-04-29 08:59:46,431 - __main__ - INFO - Finished processing 2018-01-14 09:00:00 3 hr time horizon... +2026-04-29 08:59:46,447 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:46,540 - __main__ - INFO - Finished processing 2018-01-26 16:00:00 11 hr time horizon... +2026-04-29 08:59:46,548 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 7 hr time horizon... +2026-04-29 08:59:46,563 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 12 hr time horizon... +2026-04-29 08:59:46,572 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 11 hr time horizon... +2026-04-29 08:59:46,690 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 17 hr time horizon... +2026-04-29 08:59:46,712 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:46,954 - __main__ - INFO - Finished processing 2018-01-09 19:00:00 15 hr time horizon... +2026-04-29 08:59:46,976 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 2 hr time horizon... +2026-04-29 08:59:47,416 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 13 hr time horizon... +2026-04-29 08:59:47,433 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 3 hr time horizon... +2026-04-29 08:59:49,683 - __main__ - INFO - Download failed for {date} {time_horizon} hr time horizon... +2026-04-29 08:59:49,684 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:57,887 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:57,908 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:58,056 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 15 hr time horizon... +2026-04-29 08:59:58,057 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 17 hr time horizon... +2026-04-29 08:59:58,081 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 11 hr time horizon... +2026-04-29 08:59:58,081 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:58,991 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 12 hr time horizon... +2026-04-29 08:59:59,015 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:59,524 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 17 hr time horizon... +2026-04-29 08:59:59,543 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 08:59:59,870 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 7 hr time horizon... +2026-04-29 08:59:59,894 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:00,344 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:00,365 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:00,535 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 1 hr time horizon... +2026-04-29 09:00:00,549 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 17 hr time horizon... +2026-04-29 09:00:00,560 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 3 hr time horizon... +2026-04-29 09:00:00,573 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:00,745 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 17 hr time horizon... +2026-04-29 09:00:00,765 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:00,920 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 15 hr time horizon... +2026-04-29 09:00:00,945 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:01,640 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 11 hr time horizon... +2026-04-29 09:00:01,659 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 12 hr time horizon... +2026-04-29 09:00:01,675 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:01,693 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:01,913 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 10 hr time horizon... +2026-04-29 09:00:01,931 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:02,106 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 6 hr time horizon... +2026-04-29 09:00:02,128 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 18 hr time horizon... +2026-04-29 09:00:02,212 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 3 hr time horizon... +2026-04-29 09:00:02,230 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:02,312 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 11 hr time horizon... +2026-04-29 09:00:02,331 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 5 hr time horizon... +2026-04-29 09:00:02,478 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 2 hr time horizon... +2026-04-29 09:00:02,495 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:02,624 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 12 hr time horizon... +2026-04-29 09:00:02,646 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:04,953 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 17 hr time horizon... +2026-04-29 09:00:04,977 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:11,582 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 7 hr time horizon... +2026-04-29 09:00:11,602 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:12,397 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 11 hr time horizon... +2026-04-29 09:00:12,418 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:12,793 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 7 hr time horizon... +2026-04-29 09:00:12,822 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:13,334 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 2 hr time horizon... +2026-04-29 09:00:13,349 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:14,081 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 12 hr time horizon... +2026-04-29 09:00:14,104 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:14,694 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:14,717 - __main__ - INFO - Processing values: 2018-01-15 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:14,743 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 12 hr time horizon... +2026-04-29 09:00:14,771 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:14,831 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 18 hr time horizon... +2026-04-29 09:00:14,858 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:15,049 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:15,080 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:17,024 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 7 hr time horizon... +2026-04-29 09:00:17,050 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:17,539 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:17,565 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:17,805 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 10 hr time horizon... +2026-04-29 09:00:17,828 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 7 hr time horizon... +2026-04-29 09:00:17,979 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 18 hr time horizon... +2026-04-29 09:00:17,999 - __main__ - INFO - Processing values: 2018-01-01 04:00:00 3 hr time horizon... +2026-04-29 09:00:18,104 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 12 hr time horizon... +2026-04-29 09:00:18,124 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 15 hr time horizon... +2026-04-29 09:00:18,206 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 4 hr time horizon... +2026-04-29 09:00:18,226 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 7 hr time horizon... +2026-04-29 09:00:18,238 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 5 hr time horizon... +2026-04-29 09:00:18,257 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 4 hr time horizon... +2026-04-29 09:00:18,276 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 11 hr time horizon... +2026-04-29 09:00:18,296 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 2 hr time horizon... +2026-04-29 09:00:18,395 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 16 hr time horizon... +2026-04-29 09:00:18,413 - __main__ - INFO - Processing values: 2018-01-02 12:00:00 2 hr time horizon... +2026-04-29 09:00:18,469 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 18 hr time horizon... +2026-04-29 09:00:18,490 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:21,758 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 9 hr time horizon... +2026-04-29 09:00:21,779 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:26,857 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 14 hr time horizon... +2026-04-29 09:00:26,879 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:27,493 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 11 hr time horizon... +2026-04-29 09:00:27,518 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:27,710 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:00:27,733 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:28,327 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 10 hr time horizon... +2026-04-29 09:00:28,357 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:29,027 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 2 hr time horizon... +2026-04-29 09:00:29,047 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:29,169 - __main__ - INFO - Finished processing 2018-01-15 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:29,193 - __main__ - INFO - Processing values: 2018-01-24 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:30,274 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 1 hr time horizon... +2026-04-29 09:00:30,298 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:30,512 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 1 hr time horizon... +2026-04-29 09:00:30,529 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 8 hr time horizon... +2026-04-29 09:00:30,666 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 12 hr time horizon... +2026-04-29 09:00:30,698 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:31,126 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 16 hr time horizon... +2026-04-29 09:00:31,146 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:33,290 - __main__ - INFO - Finished processing 2018-01-01 04:00:00 3 hr time horizon... +2026-04-29 09:00:33,312 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:33,381 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 15 hr time horizon... +2026-04-29 09:00:33,404 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 16 hr time horizon... +2026-04-29 09:00:33,514 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 4 hr time horizon... +2026-04-29 09:00:33,536 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:33,797 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 13 hr time horizon... +2026-04-29 09:00:33,820 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:34,738 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 5 hr time horizon... +2026-04-29 09:00:34,760 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:34,897 - __main__ - INFO - Finished processing 2018-01-02 12:00:00 2 hr time horizon... +2026-04-29 09:00:34,916 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:37,129 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 7 hr time horizon... +2026-04-29 09:00:37,156 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:37,282 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 2 hr time horizon... +2026-04-29 09:00:37,303 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:38,128 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 7 hr time horizon... +2026-04-29 09:00:38,151 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 15 hr time horizon... +2026-04-29 09:00:38,551 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 10 hr time horizon... +2026-04-29 09:00:38,577 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:43,174 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 2 hr time horizon... +2026-04-29 09:00:43,197 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:43,315 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 3 hr time horizon... +2026-04-29 09:00:43,333 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:43,878 - __main__ - INFO - Finished processing 2018-01-24 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:43,904 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:44,257 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 18 hr time horizon... +2026-04-29 09:00:44,285 - __main__ - INFO - Processing values: 2018-01-09 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:44,522 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 9 hr time horizon... +2026-04-29 09:00:44,546 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:45,091 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 8 hr time horizon... +2026-04-29 09:00:45,126 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:46,441 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 1 hr time horizon... +2026-04-29 09:00:46,462 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:47,415 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:47,441 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:48,352 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:48,378 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:48,517 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 1 hr time horizon... +2026-04-29 09:00:48,542 - __main__ - INFO - Processing values: 2018-01-13 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:49,391 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 16 hr time horizon... +2026-04-29 09:00:49,416 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:49,513 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 17 hr time horizon... +2026-04-29 09:00:49,541 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:50,132 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 4 hr time horizon... +2026-04-29 09:00:50,154 - __main__ - INFO - Processing values: 2018-01-15 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:50,504 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 14 hr time horizon... +2026-04-29 09:00:50,530 - __main__ - INFO - Processing values: 2018-01-10 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:51,090 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 10 hr time horizon... +2026-04-29 09:00:51,112 - __main__ - INFO - Processing values: 2018-01-01 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:52,337 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 1 hr time horizon... +2026-04-29 09:00:52,357 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:52,847 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 8 hr time horizon... +2026-04-29 09:00:52,873 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:53,387 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 6 hr time horizon... +2026-04-29 09:00:53,409 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:54,357 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 15 hr time horizon... +2026-04-29 09:00:54,379 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:55,172 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 2 hr time horizon... +2026-04-29 09:00:55,192 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:58,820 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 4 hr time horizon... +2026-04-29 09:00:58,843 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:00:59,525 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 12 hr time horizon... +2026-04-29 09:00:59,548 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:00,668 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 8 hr time horizon... +2026-04-29 09:01:00,699 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:01,528 - __main__ - INFO - Finished processing 2018-01-09 06:00:00 7 hr time horizon... +2026-04-29 09:01:01,552 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 15 hr time horizon... +2026-04-29 09:01:01,617 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:01,641 - __main__ - INFO - Processing values: 2018-01-22 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:01,707 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 6 hr time horizon... +2026-04-29 09:01:01,731 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 1 hr time horizon... +2026-04-29 09:01:01,787 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 7 hr time horizon... +2026-04-29 09:01:01,805 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:02,327 - __main__ - INFO - Finished processing 2018-01-13 22:00:00 13 hr time horizon... +2026-04-29 09:01:02,349 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:03,203 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 16 hr time horizon... +2026-04-29 09:01:03,224 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:04,708 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 17 hr time horizon... +2026-04-29 09:01:04,731 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:05,049 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:05,077 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:05,479 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 14 hr time horizon... +2026-04-29 09:01:05,500 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:06,110 - __main__ - INFO - Finished processing 2018-01-01 04:00:00 8 hr time horizon... +2026-04-29 09:01:06,127 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:06,292 - __main__ - INFO - Finished processing 2018-01-10 10:00:00 18 hr time horizon... +2026-04-29 09:01:06,320 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:06,812 - __main__ - INFO - Finished processing 2018-01-15 17:00:00 3 hr time horizon... +2026-04-29 09:01:06,832 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:07,441 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 9 hr time horizon... +2026-04-29 09:01:07,463 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:08,770 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 17 hr time horizon... +2026-04-29 09:01:08,793 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:08,964 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 13 hr time horizon... +2026-04-29 09:01:08,987 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:09,780 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 11 hr time horizon... +2026-04-29 09:01:09,801 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:11,319 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 18 hr time horizon... +2026-04-29 09:01:11,342 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:13,633 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:01:13,655 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:15,070 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 9 hr time horizon... +2026-04-29 09:01:15,099 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:16,881 - __main__ - INFO - Finished processing 2018-01-22 12:00:00 5 hr time horizon... +2026-04-29 09:01:16,903 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 9 hr time horizon... +2026-04-29 09:01:16,945 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 1 hr time horizon... +2026-04-29 09:01:16,963 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 16 hr time horizon... +2026-04-29 09:01:17,021 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 2 hr time horizon... +2026-04-29 09:01:17,041 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:17,159 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 1 hr time horizon... +2026-04-29 09:01:17,182 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:17,510 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 15 hr time horizon... +2026-04-29 09:01:17,531 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:18,384 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 6 hr time horizon... +2026-04-29 09:01:18,414 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:20,669 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:20,693 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:21,384 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 6 hr time horizon... +2026-04-29 09:01:21,404 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 3 hr time horizon... +2026-04-29 09:01:21,404 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 8 hr time horizon... +2026-04-29 09:01:21,435 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:21,719 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 9 hr time horizon... +2026-04-29 09:01:21,742 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:22,345 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 18 hr time horizon... +2026-04-29 09:01:22,367 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:22,445 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 12 hr time horizon... +2026-04-29 09:01:22,467 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:22,926 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 10 hr time horizon... +2026-04-29 09:01:22,945 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:24,093 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 2 hr time horizon... +2026-04-29 09:01:24,116 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:24,981 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 11 hr time horizon... +2026-04-29 09:01:25,007 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:25,993 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 7 hr time horizon... +2026-04-29 09:01:26,022 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:27,025 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 10 hr time horizon... +2026-04-29 09:01:27,052 - __main__ - INFO - Processing values: 2018-01-21 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:29,868 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 12 hr time horizon... +2026-04-29 09:01:29,892 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:32,369 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 8 hr time horizon... +2026-04-29 09:01:32,388 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:32,940 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 10 hr time horizon... +2026-04-29 09:01:32,961 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 8 hr time horizon... +2026-04-29 09:01:33,026 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 16 hr time horizon... +2026-04-29 09:01:33,054 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:33,273 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:33,296 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:33,952 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 17 hr time horizon... +2026-04-29 09:01:33,986 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:35,597 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 18 hr time horizon... +2026-04-29 09:01:35,619 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:35,988 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 4 hr time horizon... +2026-04-29 09:01:36,012 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:36,210 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 4 hr time horizon... +2026-04-29 09:01:36,237 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:36,572 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 16 hr time horizon... +2026-04-29 09:01:36,598 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:36,846 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 8 hr time horizon... +2026-04-29 09:01:36,869 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:37,057 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 15 hr time horizon... +2026-04-29 09:01:37,082 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:37,282 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 13 hr time horizon... +2026-04-29 09:01:37,309 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:37,907 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 7 hr time horizon... +2026-04-29 09:01:37,932 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:38,906 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 9 hr time horizon... +2026-04-29 09:01:38,930 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:39,165 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 9 hr time horizon... +2026-04-29 09:01:39,186 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:40,259 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 3 hr time horizon... +2026-04-29 09:01:40,281 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:41,295 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 6 hr time horizon... +2026-04-29 09:01:41,317 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:42,005 - __main__ - INFO - Finished processing 2018-01-21 19:00:00 11 hr time horizon... +2026-04-29 09:01:42,028 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 4 hr time horizon... +2026-04-29 09:01:42,581 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 13 hr time horizon... +2026-04-29 09:01:42,603 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:46,095 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 15 hr time horizon... +2026-04-29 09:01:46,114 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:47,548 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 11 hr time horizon... +2026-04-29 09:01:47,577 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:47,779 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 15 hr time horizon... +2026-04-29 09:01:47,799 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:48,881 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:48,910 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:49,483 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:49,503 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:49,586 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 10 hr time horizon... +2026-04-29 09:01:49,609 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:50,032 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 3 hr time horizon... +2026-04-29 09:01:50,053 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:51,188 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 18 hr time horizon... +2026-04-29 09:01:51,210 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:51,380 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 11 hr time horizon... +2026-04-29 09:01:51,399 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 15 hr time horizon... +2026-04-29 09:01:51,472 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 7 hr time horizon... +2026-04-29 09:01:51,492 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:51,675 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 9 hr time horizon... +2026-04-29 09:01:51,700 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:51,937 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 4 hr time horizon... +2026-04-29 09:01:51,959 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:53,094 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 17 hr time horizon... +2026-04-29 09:01:53,114 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:53,962 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 7 hr time horizon... +2026-04-29 09:01:53,987 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:54,114 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 13 hr time horizon... +2026-04-29 09:01:54,145 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:01:55,959 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 6 hr time horizon... +2026-04-29 09:01:55,981 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 18 hr time horizon... +2026-04-29 09:01:55,988 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 7 hr time horizon... +2026-04-29 09:01:56,012 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 16 hr time horizon... +2026-04-29 09:01:56,469 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 9 hr time horizon... +2026-04-29 09:01:56,490 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:01,600 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 10 hr time horizon... +2026-04-29 09:02:01,621 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:01,656 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 4 hr time horizon... +2026-04-29 09:02:01,680 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:03,004 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 2 hr time horizon... +2026-04-29 09:02:03,026 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:03,327 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 1 hr time horizon... +2026-04-29 09:02:03,349 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:03,870 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 12 hr time horizon... +2026-04-29 09:02:03,896 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:04,753 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 7 hr time horizon... +2026-04-29 09:02:04,774 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:05,475 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 11 hr time horizon... +2026-04-29 09:02:05,499 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:05,659 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 17 hr time horizon... +2026-04-29 09:02:05,685 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:06,066 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 10 hr time horizon... +2026-04-29 09:02:06,088 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:07,098 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 15 hr time horizon... +2026-04-29 09:02:07,124 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:09,016 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 11 hr time horizon... +2026-04-29 09:02:09,021 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 12 hr time horizon... +2026-04-29 09:02:09,034 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:09,041 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 11 hr time horizon... +2026-04-29 09:02:09,045 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 14 hr time horizon... +2026-04-29 09:02:09,061 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 12 hr time horizon... +2026-04-29 09:02:09,073 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 13 hr time horizon... +2026-04-29 09:02:09,076 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:09,753 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:09,778 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 8 hr time horizon... +2026-04-29 09:02:09,905 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 9 hr time horizon... +2026-04-29 09:02:09,927 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:10,060 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:10,087 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:12,059 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 18 hr time horizon... +2026-04-29 09:02:12,080 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 2 hr time horizon... +2026-04-29 09:02:12,253 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 16 hr time horizon... +2026-04-29 09:02:12,279 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 15 hr time horizon... +2026-04-29 09:02:12,598 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 13 hr time horizon... +2026-04-29 09:02:12,620 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:16,680 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:16,700 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:18,732 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:18,752 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:19,016 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 5 hr time horizon... +2026-04-29 09:02:19,039 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:19,234 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 2 hr time horizon... +2026-04-29 09:02:19,254 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:19,309 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 4 hr time horizon... +2026-04-29 09:02:19,328 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:20,075 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 15 hr time horizon... +2026-04-29 09:02:20,095 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:20,705 - __main__ - INFO - Finished processing 2018-01-29 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:20,724 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:22,198 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 17 hr time horizon... +2026-04-29 09:02:22,221 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:23,199 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 17 hr time horizon... +2026-04-29 09:02:23,222 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:24,124 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 13 hr time horizon... +2026-04-29 09:02:24,153 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:24,840 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 12 hr time horizon... +2026-04-29 09:02:24,860 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 3 hr time horizon... +2026-04-29 09:02:24,874 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:24,895 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 8 hr time horizon... +2026-04-29 09:02:24,911 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 14 hr time horizon... +2026-04-29 09:02:24,933 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:25,537 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 8 hr time horizon... +2026-04-29 09:02:25,557 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:25,714 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 15 hr time horizon... +2026-04-29 09:02:25,736 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:26,163 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:02:26,187 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:27,452 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 14 hr time horizon... +2026-04-29 09:02:27,477 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:28,394 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 15 hr time horizon... +2026-04-29 09:02:28,415 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:28,942 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 2 hr time horizon... +2026-04-29 09:02:28,964 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:30,260 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 13 hr time horizon... +2026-04-29 09:02:30,280 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:33,650 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:33,689 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 3 hr time horizon... +2026-04-29 09:02:33,706 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 14 hr time horizon... +2026-04-29 09:02:33,738 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:34,699 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 16 hr time horizon... +2026-04-29 09:02:34,719 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:35,031 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 12 hr time horizon... +2026-04-29 09:02:35,054 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:35,376 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 4 hr time horizon... +2026-04-29 09:02:35,399 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:36,297 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 17 hr time horizon... +2026-04-29 09:02:36,317 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:36,700 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 14 hr time horizon... +2026-04-29 09:02:36,725 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:02:37,176 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:37,208 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:37,231 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 1 hr time horizon... +2026-04-29 09:02:37,252 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:39,882 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 3 hr time horizon... +2026-04-29 09:02:39,900 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:40,228 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 11 hr time horizon... +2026-04-29 09:02:40,252 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:40,381 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:40,402 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:41,132 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 7 hr time horizon... +2026-04-29 09:02:41,153 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 13 hr time horizon... +2026-04-29 09:02:41,227 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 15 hr time horizon... +2026-04-29 09:02:41,252 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:41,631 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 9 hr time horizon... +2026-04-29 09:02:41,653 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 11 hr time horizon... +2026-04-29 09:02:42,094 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 15 hr time horizon... +2026-04-29 09:02:42,118 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:45,315 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 13 hr time horizon... +2026-04-29 09:02:45,337 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:46,805 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 3 hr time horizon... +2026-04-29 09:02:46,828 - __main__ - INFO - Processing values: 2018-01-26 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:46,904 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 15 hr time horizon... +2026-04-29 09:02:46,929 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:50,079 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 3 hr time horizon... +2026-04-29 09:02:50,098 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:50,622 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:50,642 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:51,257 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 11 hr time horizon... +2026-04-29 09:02:51,282 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:51,663 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 18 hr time horizon... +2026-04-29 09:02:51,672 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 2 hr time horizon... +2026-04-29 09:02:51,689 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 9 hr time horizon... +2026-04-29 09:02:51,697 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:51,900 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 17 hr time horizon... +2026-04-29 09:02:51,923 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:52,213 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 7 hr time horizon... +2026-04-29 09:02:52,236 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:54,107 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 11 hr time horizon... +2026-04-29 09:02:54,130 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:54,357 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 18 hr time horizon... +2026-04-29 09:02:54,380 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:55,306 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 3 hr time horizon... +2026-04-29 09:02:55,334 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:56,725 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 14 hr time horizon... +2026-04-29 09:02:56,747 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:58,028 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:58,049 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:58,095 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 13 hr time horizon... +2026-04-29 09:02:58,118 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:58,618 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 15 hr time horizon... +2026-04-29 09:02:58,642 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 5 hr time horizon... +2026-04-29 09:02:58,678 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 18 hr time horizon... +2026-04-29 09:02:58,702 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:59,219 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 11 hr time horizon... +2026-04-29 09:02:59,246 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:02:59,765 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 9 hr time horizon... +2026-04-29 09:02:59,789 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:01,790 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 14 hr time horizon... +2026-04-29 09:03:01,811 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:03,876 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:03,900 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:04,584 - __main__ - INFO - Finished processing 2018-01-26 15:00:00 4 hr time horizon... +2026-04-29 09:03:04,607 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:06,558 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 12 hr time horizon... +2026-04-29 09:03:06,583 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:06,931 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:06,964 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:07,845 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:07,868 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:07,942 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:07,975 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:08,537 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:08,568 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 13 hr time horizon... +2026-04-29 09:03:08,573 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:08,594 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:09,173 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 17 hr time horizon... +2026-04-29 09:03:09,196 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:10,443 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 6 hr time horizon... +2026-04-29 09:03:10,474 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:11,563 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 8 hr time horizon... +2026-04-29 09:03:11,586 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:12,143 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 14 hr time horizon... +2026-04-29 09:03:12,170 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:13,131 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 14 hr time horizon... +2026-04-29 09:03:13,157 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:14,053 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 5 hr time horizon... +2026-04-29 09:03:14,076 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 3 hr time horizon... +2026-04-29 09:03:14,077 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 14 hr time horizon... +2026-04-29 09:03:14,098 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:14,475 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 6 hr time horizon... +2026-04-29 09:03:14,498 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:14,820 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 6 hr time horizon... +2026-04-29 09:03:14,844 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:15,500 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 2 hr time horizon... +2026-04-29 09:03:15,520 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:15,999 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 17 hr time horizon... +2026-04-29 09:03:16,021 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:18,039 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:18,061 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:19,850 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 7 hr time horizon... +2026-04-29 09:03:19,872 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:20,862 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 10 hr time horizon... +2026-04-29 09:03:20,895 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:22,614 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:22,643 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:23,203 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 12 hr time horizon... +2026-04-29 09:03:23,223 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:23,503 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 11 hr time horizon... +2026-04-29 09:03:23,533 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:23,740 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 13 hr time horizon... +2026-04-29 09:03:23,759 - __main__ - INFO - Processing values: 2018-01-07 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:24,974 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 11 hr time horizon... +2026-04-29 09:03:24,995 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:25,233 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 2 hr time horizon... +2026-04-29 09:03:25,253 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:25,749 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 14 hr time horizon... +2026-04-29 09:03:25,769 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:26,633 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:26,664 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:27,764 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 8 hr time horizon... +2026-04-29 09:03:27,787 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:28,412 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 14 hr time horizon... +2026-04-29 09:03:28,441 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:28,633 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 3 hr time horizon... +2026-04-29 09:03:28,662 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:29,323 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 7 hr time horizon... +2026-04-29 09:03:29,345 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:29,409 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 17 hr time horizon... +2026-04-29 09:03:29,429 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:29,572 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 2 hr time horizon... +2026-04-29 09:03:29,601 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:29,996 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 16 hr time horizon... +2026-04-29 09:03:30,014 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 12 hr time horizon... +2026-04-29 09:03:30,211 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 2 hr time horizon... +2026-04-29 09:03:30,228 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:31,296 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 17 hr time horizon... +2026-04-29 09:03:31,318 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:33,060 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 18 hr time horizon... +2026-04-29 09:03:33,082 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:35,010 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 4 hr time horizon... +2026-04-29 09:03:35,038 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:35,560 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 3 hr time horizon... +2026-04-29 09:03:35,580 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:37,182 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:37,204 - __main__ - INFO - Processing values: 2018-01-13 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:38,062 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 3 hr time horizon... +2026-04-29 09:03:38,082 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:39,038 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 5 hr time horizon... +2026-04-29 09:03:39,060 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:39,843 - __main__ - INFO - Finished processing 2018-01-07 13:00:00 9 hr time horizon... +2026-04-29 09:03:39,867 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 14 hr time horizon... +2026-04-29 09:03:40,033 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 3 hr time horizon... +2026-04-29 09:03:40,056 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:41,234 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 16 hr time horizon... +2026-04-29 09:03:41,258 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:42,319 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 11 hr time horizon... +2026-04-29 09:03:42,342 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:42,857 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 2 hr time horizon... +2026-04-29 09:03:42,884 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:43,669 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:03:43,692 - __main__ - INFO - Processing values: 2018-01-24 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:43,801 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:43,824 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:43,909 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 10 hr time horizon... +2026-04-29 09:03:43,929 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:44,648 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 12 hr time horizon... +2026-04-29 09:03:44,675 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:45,002 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 5 hr time horizon... +2026-04-29 09:03:45,024 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:45,523 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 17 hr time horizon... +2026-04-29 09:03:45,547 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:45,848 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 1 hr time horizon... +2026-04-29 09:03:45,869 - __main__ - INFO - Processing values: 2018-01-05 12:00:00 9 hr time horizon... +2026-04-29 09:03:46,026 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 12 hr time horizon... +2026-04-29 09:03:46,051 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:47,126 - __main__ - INFO - Finished processing 2018-01-14 21:00:00 11 hr time horizon... +2026-04-29 09:03:47,148 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:48,773 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 10 hr time horizon... +2026-04-29 09:03:48,796 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:50,706 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 13 hr time horizon... +2026-04-29 09:03:50,727 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:52,232 - __main__ - INFO - Finished processing 2018-01-13 06:00:00 14 hr time horizon... +2026-04-29 09:03:52,256 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:53,553 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 3 hr time horizon... +2026-04-29 09:03:53,580 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:54,044 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 16 hr time horizon... +2026-04-29 09:03:54,067 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:54,602 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 14 hr time horizon... +2026-04-29 09:03:54,624 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:55,613 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 3 hr time horizon... +2026-04-29 09:03:55,633 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:55,824 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 5 hr time horizon... +2026-04-29 09:03:55,845 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:57,348 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:57,375 - __main__ - INFO - Processing values: 2018-01-02 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:58,576 - __main__ - INFO - Finished processing 2018-01-24 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:58,601 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 7 hr time horizon... +2026-04-29 09:03:58,617 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 13 hr time horizon... +2026-04-29 09:03:58,647 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:03:59,345 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:59,379 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:03:59,495 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 14 hr time horizon... +2026-04-29 09:03:59,520 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:00,232 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:00,253 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:01,048 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 18 hr time horizon... +2026-04-29 09:04:01,074 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 3 hr time horizon... +2026-04-29 09:04:01,253 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 4 hr time horizon... +2026-04-29 09:04:01,277 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:01,447 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 1 hr time horizon... +2026-04-29 09:04:01,467 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:03,465 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 3 hr time horizon... +2026-04-29 09:04:03,485 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:05,233 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 16 hr time horizon... +2026-04-29 09:04:05,256 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:07,747 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 9 hr time horizon... +2026-04-29 09:04:07,765 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 5 hr time horizon... +2026-04-29 09:04:07,767 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 12 hr time horizon... +2026-04-29 09:04:07,791 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:08,224 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 8 hr time horizon... +2026-04-29 09:04:08,248 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:09,087 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 5 hr time horizon... +2026-04-29 09:04:09,110 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:10,362 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 8 hr time horizon... +2026-04-29 09:04:10,379 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:10,424 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 8 hr time horizon... +2026-04-29 09:04:10,443 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:11,001 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 18 hr time horizon... +2026-04-29 09:04:11,026 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:12,523 - __main__ - INFO - Finished processing 2018-01-02 09:00:00 1 hr time horizon... +2026-04-29 09:04:12,542 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:14,089 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 7 hr time horizon... +2026-04-29 09:04:14,113 - __main__ - INFO - Processing values: 2018-01-29 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:14,236 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 12 hr time horizon... +2026-04-29 09:04:14,261 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 3 hr time horizon... +2026-04-29 09:04:14,266 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 18 hr time horizon... +2026-04-29 09:04:14,291 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:15,059 - __main__ - INFO - Finished processing 2018-01-05 12:00:00 9 hr time horizon... +2026-04-29 09:04:15,080 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:15,718 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 13 hr time horizon... +2026-04-29 09:04:15,744 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:15,937 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 3 hr time horizon... +2026-04-29 09:04:15,961 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:16,425 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 1 hr time horizon... +2026-04-29 09:04:16,448 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:17,377 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 16 hr time horizon... +2026-04-29 09:04:17,399 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:19,122 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 11 hr time horizon... +2026-04-29 09:04:19,140 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:19,295 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 11 hr time horizon... +2026-04-29 09:04:19,318 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:20,187 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 3 hr time horizon... +2026-04-29 09:04:20,211 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:21,942 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 8 hr time horizon... +2026-04-29 09:04:21,967 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:22,874 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 12 hr time horizon... +2026-04-29 09:04:22,903 - __main__ - INFO - Processing values: 2018-01-09 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:23,334 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 2 hr time horizon... +2026-04-29 09:04:23,351 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:23,459 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 4 hr time horizon... +2026-04-29 09:04:23,482 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:24,985 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 3 hr time horizon... +2026-04-29 09:04:25,004 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:25,589 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 14 hr time horizon... +2026-04-29 09:04:25,611 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:25,972 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 17 hr time horizon... +2026-04-29 09:04:25,998 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:27,949 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 16 hr time horizon... +2026-04-29 09:04:27,975 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:28,341 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 3 hr time horizon... +2026-04-29 09:04:28,364 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:29,299 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 3 hr time horizon... +2026-04-29 09:04:29,331 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:29,708 - __main__ - INFO - Finished processing 2018-01-29 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:29,737 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:30,779 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 10 hr time horizon... +2026-04-29 09:04:30,800 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:31,013 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 9 hr time horizon... +2026-04-29 09:04:31,043 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:31,414 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 12 hr time horizon... +2026-04-29 09:04:31,439 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 1 hr time horizon... +2026-04-29 09:04:31,668 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 7 hr time horizon... +2026-04-29 09:04:31,695 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:32,815 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 13 hr time horizon... +2026-04-29 09:04:32,840 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:33,895 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:33,925 - __main__ - INFO - Processing values: 2018-01-03 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:34,942 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 7 hr time horizon... +2026-04-29 09:04:34,966 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:36,402 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 8 hr time horizon... +2026-04-29 09:04:36,425 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:37,098 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:37,120 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:04:38,216 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:38,244 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:39,366 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 10 hr time horizon... +2026-04-29 09:04:39,388 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:39,553 - __main__ - INFO - Finished processing 2018-01-09 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:39,582 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:41,080 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 17 hr time horizon... +2026-04-29 09:04:41,103 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:41,240 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 18 hr time horizon... +2026-04-29 09:04:41,266 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:41,401 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:41,422 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:42,401 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 10 hr time horizon... +2026-04-29 09:04:42,424 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:43,713 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 12 hr time horizon... +2026-04-29 09:04:43,739 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:43,886 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 14 hr time horizon... +2026-04-29 09:04:43,907 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:45,480 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 17 hr time horizon... +2026-04-29 09:04:45,506 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:45,819 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:45,842 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:45,959 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 11 hr time horizon... +2026-04-29 09:04:45,983 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:47,030 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 8 hr time horizon... +2026-04-29 09:04:47,058 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:47,177 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 1 hr time horizon... +2026-04-29 09:04:47,200 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 6 hr time horizon... +2026-04-29 09:04:47,257 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 17 hr time horizon... +2026-04-29 09:04:47,281 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:48,026 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 11 hr time horizon... +2026-04-29 09:04:48,048 - __main__ - INFO - Processing values: 2018-01-09 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:51,434 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 6 hr time horizon... +2026-04-29 09:04:51,455 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:52,889 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:52,915 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:54,658 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 1 hr time horizon... +2026-04-29 09:04:54,680 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:54,842 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 4 hr time horizon... +2026-04-29 09:04:54,870 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:55,266 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 9 hr time horizon... +2026-04-29 09:04:55,287 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:55,742 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 12 hr time horizon... +2026-04-29 09:04:55,765 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:56,386 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 7 hr time horizon... +2026-04-29 09:04:56,415 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:56,573 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 11 hr time horizon... +2026-04-29 09:04:56,595 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:57,040 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 14 hr time horizon... +2026-04-29 09:04:57,063 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:59,076 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 10 hr time horizon... +2026-04-29 09:04:59,098 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 6 hr time horizon... +2026-04-29 09:04:59,190 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 7 hr time horizon... +2026-04-29 09:04:59,221 - __main__ - INFO - Processing values: 2018-01-10 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:04:59,283 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 4 hr time horizon... +2026-04-29 09:04:59,314 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:01,411 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 14 hr time horizon... +2026-04-29 09:05:01,433 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:01,622 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 18 hr time horizon... +2026-04-29 09:05:01,642 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 10 hr time horizon... +2026-04-29 09:05:01,658 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 15 hr time horizon... +2026-04-29 09:05:01,680 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:03,391 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 15 hr time horizon... +2026-04-29 09:05:03,412 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 3 hr time horizon... +2026-04-29 09:05:03,498 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 10 hr time horizon... +2026-04-29 09:05:03,519 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:03,602 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 6 hr time horizon... +2026-04-29 09:05:03,628 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:05,324 - __main__ - INFO - Finished processing 2018-01-09 19:00:00 10 hr time horizon... +2026-04-29 09:05:05,349 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:05,534 - __main__ - INFO - Finished processing 2018-01-03 17:00:00 18 hr time horizon... +2026-04-29 09:05:05,557 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:07,282 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 14 hr time horizon... +2026-04-29 09:05:07,302 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:08,844 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 17 hr time horizon... +2026-04-29 09:05:08,864 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:10,384 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:10,407 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:11,037 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:11,059 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 15 hr time horizon... +2026-04-29 09:05:11,198 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:11,221 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:12,248 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 16 hr time horizon... +2026-04-29 09:05:12,283 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:12,437 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 1 hr time horizon... +2026-04-29 09:05:12,458 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:13,511 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 4 hr time horizon... +2026-04-29 09:05:13,535 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:14,441 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 1 hr time horizon... +2026-04-29 09:05:14,463 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:15,727 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 5 hr time horizon... +2026-04-29 09:05:15,748 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:15,934 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 6 hr time horizon... +2026-04-29 09:05:15,964 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:16,221 - __main__ - INFO - Finished processing 2018-01-10 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:16,244 - __main__ - INFO - Processing values: 2018-01-01 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:17,691 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 11 hr time horizon... +2026-04-29 09:05:17,716 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:17,905 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 10 hr time horizon... +2026-04-29 09:05:17,930 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:18,397 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 9 hr time horizon... +2026-04-29 09:05:18,420 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:19,530 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 11 hr time horizon... +2026-04-29 09:05:19,552 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:20,165 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 3 hr time horizon... +2026-04-29 09:05:20,194 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:20,499 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 9 hr time horizon... +2026-04-29 09:05:20,527 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:22,726 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:22,750 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 14 hr time horizon... +2026-04-29 09:05:22,909 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 10 hr time horizon... +2026-04-29 09:05:22,932 - __main__ - INFO - Processing values: 2018-01-29 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:24,884 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 18 hr time horizon... +2026-04-29 09:05:24,910 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:27,053 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 9 hr time horizon... +2026-04-29 09:05:27,086 - __main__ - INFO - Processing values: 2018-01-28 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:27,383 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 14 hr time horizon... +2026-04-29 09:05:27,410 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:27,827 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:27,849 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:28,006 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 15 hr time horizon... +2026-04-29 09:05:28,035 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:28,671 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:28,696 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:28,945 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 12 hr time horizon... +2026-04-29 09:05:28,972 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:30,013 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 14 hr time horizon... +2026-04-29 09:05:30,035 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:31,084 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:31,106 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:31,774 - __main__ - INFO - Finished processing 2018-01-01 21:00:00 1 hr time horizon... +2026-04-29 09:05:31,793 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:32,381 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 5 hr time horizon... +2026-04-29 09:05:32,415 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:32,526 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 5 hr time horizon... +2026-04-29 09:05:32,550 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:33,713 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 5 hr time horizon... +2026-04-29 09:05:33,734 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:33,812 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 7 hr time horizon... +2026-04-29 09:05:33,839 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:35,810 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 15 hr time horizon... +2026-04-29 09:05:35,830 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:36,183 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 1 hr time horizon... +2026-04-29 09:05:36,200 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 6 hr time horizon... +2026-04-29 09:05:36,308 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 14 hr time horizon... +2026-04-29 09:05:36,331 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 5 hr time horizon... +2026-04-29 09:05:36,389 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 14 hr time horizon... +2026-04-29 09:05:36,415 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:38,841 - __main__ - INFO - Finished processing 2018-01-29 06:00:00 4 hr time horizon... +2026-04-29 09:05:38,861 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:39,994 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 14 hr time horizon... +2026-04-29 09:05:40,015 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 1 hr time horizon... +2026-04-29 09:05:40,125 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 7 hr time horizon... +2026-04-29 09:05:40,144 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:42,584 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 13 hr time horizon... +2026-04-29 09:05:42,604 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:42,900 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 9 hr time horizon... +2026-04-29 09:05:42,925 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:43,374 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 11 hr time horizon... +2026-04-29 09:05:43,394 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 10 hr time horizon... +2026-04-29 09:05:43,477 - __main__ - INFO - Finished processing 2018-01-28 12:00:00 11 hr time horizon... +2026-04-29 09:05:43,495 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:44,311 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 16 hr time horizon... +2026-04-29 09:05:44,338 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:44,735 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 3 hr time horizon... +2026-04-29 09:05:44,760 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:47,012 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 8 hr time horizon... +2026-04-29 09:05:47,033 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:47,378 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 17 hr time horizon... +2026-04-29 09:05:47,401 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:47,657 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:47,679 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:48,424 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 4 hr time horizon... +2026-04-29 09:05:48,446 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:48,742 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 2 hr time horizon... +2026-04-29 09:05:48,763 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:49,061 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 18 hr time horizon... +2026-04-29 09:05:49,082 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:50,619 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 10 hr time horizon... +2026-04-29 09:05:50,641 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 4 hr time horizon... +2026-04-29 09:05:50,762 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 5 hr time horizon... +2026-04-29 09:05:50,784 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 3 hr time horizon... +2026-04-29 09:05:50,878 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:50,896 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 15 hr time horizon... +2026-04-29 09:05:50,966 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 2 hr time horizon... +2026-04-29 09:05:50,992 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:51,912 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 12 hr time horizon... +2026-04-29 09:05:51,932 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:53,852 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 4 hr time horizon... +2026-04-29 09:05:53,872 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:55,415 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 12 hr time horizon... +2026-04-29 09:05:55,439 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:57,558 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 4 hr time horizon... +2026-04-29 09:05:57,588 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:57,743 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 1 hr time horizon... +2026-04-29 09:05:57,765 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:57,883 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 1 hr time horizon... +2026-04-29 09:05:57,910 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:58,224 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 10 hr time horizon... +2026-04-29 09:05:58,250 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:05:59,192 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 1 hr time horizon... +2026-04-29 09:05:59,214 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:00,039 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 10 hr time horizon... +2026-04-29 09:06:00,060 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:01,438 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 16 hr time horizon... +2026-04-29 09:06:01,474 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:02,846 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:02,873 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:03,413 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 15 hr time horizon... +2026-04-29 09:06:03,440 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:03,985 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 9 hr time horizon... +2026-04-29 09:06:04,014 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:04,023 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 11 hr time horizon... +2026-04-29 09:06:04,055 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:04,623 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 16 hr time horizon... +2026-04-29 09:06:04,643 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:05,679 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 3 hr time horizon... +2026-04-29 09:06:05,705 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:05,722 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 18 hr time horizon... +2026-04-29 09:06:05,745 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:05,819 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 4 hr time horizon... +2026-04-29 09:06:05,839 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:07,141 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 15 hr time horizon... +2026-04-29 09:06:07,166 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:07,438 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 6 hr time horizon... +2026-04-29 09:06:07,463 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:09,435 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 2 hr time horizon... +2026-04-29 09:06:09,459 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:10,386 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 4 hr time horizon... +2026-04-29 09:06:10,407 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:11,731 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 4 hr time horizon... +2026-04-29 09:06:11,758 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:12,187 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 4 hr time horizon... +2026-04-29 09:06:12,206 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:13,388 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 3 hr time horizon... +2026-04-29 09:06:13,408 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 12 hr time horizon... +2026-04-29 09:06:13,553 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 13 hr time horizon... +2026-04-29 09:06:13,577 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:15,852 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 6 hr time horizon... +2026-04-29 09:06:15,873 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:17,547 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 3 hr time horizon... +2026-04-29 09:06:17,572 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:17,686 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 3 hr time horizon... +2026-04-29 09:06:17,716 - __main__ - INFO - Processing values: 2018-01-02 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:18,939 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 7 hr time horizon... +2026-04-29 09:06:18,966 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:19,732 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:19,754 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:19,868 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 3 hr time horizon... +2026-04-29 09:06:19,890 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:20,373 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 6 hr time horizon... +2026-04-29 09:06:20,395 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:20,475 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 18 hr time horizon... +2026-04-29 09:06:20,496 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:21,031 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:21,058 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:21,847 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 7 hr time horizon... +2026-04-29 09:06:21,873 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:23,178 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 15 hr time horizon... +2026-04-29 09:06:23,205 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 15 hr time horizon... +2026-04-29 09:06:23,254 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:23,280 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 13 hr time horizon... +2026-04-29 09:06:23,407 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 10 hr time horizon... +2026-04-29 09:06:23,431 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:23,680 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 9 hr time horizon... +2026-04-29 09:06:23,701 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:26,031 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:26,054 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:28,297 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:28,321 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:29,016 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 1 hr time horizon... +2026-04-29 09:06:29,043 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:30,161 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 8 hr time horizon... +2026-04-29 09:06:30,182 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:31,163 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 16 hr time horizon... +2026-04-29 09:06:31,185 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:31,724 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 18 hr time horizon... +2026-04-29 09:06:31,745 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:32,295 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 12 hr time horizon... +2026-04-29 09:06:32,325 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:35,102 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:35,126 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:35,417 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 4 hr time horizon... +2026-04-29 09:06:35,438 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:35,989 - __main__ - INFO - Finished processing 2018-01-02 00:00:00 10 hr time horizon... +2026-04-29 09:06:36,009 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 4 hr time horizon... +2026-04-29 09:06:36,027 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 8 hr time horizon... +2026-04-29 09:06:36,049 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 11 hr time horizon... +2026-04-29 09:06:36,174 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 12 hr time horizon... +2026-04-29 09:06:36,195 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:36,412 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 6 hr time horizon... +2026-04-29 09:06:36,436 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 1 hr time horizon... +2026-04-29 09:06:36,622 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 12 hr time horizon... +2026-04-29 09:06:36,647 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:39,340 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 15 hr time horizon... +2026-04-29 09:06:39,359 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:39,853 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 13 hr time horizon... +2026-04-29 09:06:39,877 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 4 hr time horizon... +2026-04-29 09:06:39,883 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 10 hr time horizon... +2026-04-29 09:06:39,904 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:39,988 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 14 hr time horizon... +2026-04-29 09:06:40,013 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:40,412 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 14 hr time horizon... +2026-04-29 09:06:40,438 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:41,648 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 1 hr time horizon... +2026-04-29 09:06:41,669 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:42,554 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 17 hr time horizon... +2026-04-29 09:06:42,576 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:43,891 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 13 hr time horizon... +2026-04-29 09:06:43,914 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:44,536 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 14 hr time horizon... +2026-04-29 09:06:44,558 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:45,521 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 14 hr time horizon... +2026-04-29 09:06:45,541 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:45,930 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 10 hr time horizon... +2026-04-29 09:06:45,955 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:46,444 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 1 hr time horizon... +2026-04-29 09:06:46,462 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:49,399 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 11 hr time horizon... +2026-04-29 09:06:49,423 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:50,048 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 4 hr time horizon... +2026-04-29 09:06:50,067 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:50,214 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:50,238 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 12 hr time horizon... +2026-04-29 09:06:50,327 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 12 hr time horizon... +2026-04-29 09:06:50,348 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:50,598 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 10 hr time horizon... +2026-04-29 09:06:50,617 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 1 hr time horizon... +2026-04-29 09:06:50,739 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 1 hr time horizon... +2026-04-29 09:06:50,758 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:51,166 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 12 hr time horizon... +2026-04-29 09:06:51,185 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:54,086 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 11 hr time horizon... +2026-04-29 09:06:54,111 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:54,195 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:54,213 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:54,667 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 11 hr time horizon... +2026-04-29 09:06:54,693 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:54,703 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 18 hr time horizon... +2026-04-29 09:06:54,729 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:56,082 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 4 hr time horizon... +2026-04-29 09:06:56,103 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:56,677 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 18 hr time horizon... +2026-04-29 09:06:56,698 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 2 hr time horizon... +2026-04-29 09:06:56,701 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 9 hr time horizon... +2026-04-29 09:06:56,721 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:57,612 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:57,635 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:58,647 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 14 hr time horizon... +2026-04-29 09:06:58,672 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:06:59,574 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 1 hr time horizon... +2026-04-29 09:06:59,595 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:00,844 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 5 hr time horizon... +2026-04-29 09:07:00,865 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:00,961 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 18 hr time horizon... +2026-04-29 09:07:00,986 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:03,624 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 11 hr time horizon... +2026-04-29 09:07:03,645 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:05,006 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 12 hr time horizon... +2026-04-29 09:07:05,031 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:05,504 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 1 hr time horizon... +2026-04-29 09:07:05,524 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:05,665 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 5 hr time horizon... +2026-04-29 09:07:05,688 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:05,722 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 1 hr time horizon... +2026-04-29 09:07:05,742 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 17 hr time horizon... +2026-04-29 09:07:06,041 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 13 hr time horizon... +2026-04-29 09:07:06,062 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:06,223 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 5 hr time horizon... +2026-04-29 09:07:06,244 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:07,439 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 8 hr time horizon... +2026-04-29 09:07:07,462 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:09,594 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:09,618 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:10,453 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:10,475 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:11,925 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:11,945 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:12,667 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 5 hr time horizon... +2026-04-29 09:07:12,716 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:13,027 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 12 hr time horizon... +2026-04-29 09:07:13,051 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:13,246 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 2 hr time horizon... +2026-04-29 09:07:13,273 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:13,340 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 2 hr time horizon... +2026-04-29 09:07:13,367 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:13,956 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:13,978 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:14,995 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 13 hr time horizon... +2026-04-29 09:07:15,033 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 5 hr time horizon... +2026-04-29 09:07:15,199 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 1 hr time horizon... +2026-04-29 09:07:15,227 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:17,734 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 6 hr time horizon... +2026-04-29 09:07:17,762 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 8 hr time horizon... +2026-04-29 09:07:17,859 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 18 hr time horizon... +2026-04-29 09:07:17,883 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:18,941 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 1 hr time horizon... +2026-04-29 09:07:18,967 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:21,540 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 7 hr time horizon... +2026-04-29 09:07:21,567 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:21,851 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 4 hr time horizon... +2026-04-29 09:07:21,871 - __main__ - INFO - Processing values: 2018-01-24 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:22,176 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:22,200 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 13 hr time horizon... +2026-04-29 09:07:22,344 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:22,366 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 2 hr time horizon... +2026-04-29 09:07:22,390 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 13 hr time horizon... +2026-04-29 09:07:22,414 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:23,607 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 14 hr time horizon... +2026-04-29 09:07:23,631 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:24,131 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 17 hr time horizon... +2026-04-29 09:07:24,157 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:25,482 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 3 hr time horizon... +2026-04-29 09:07:25,505 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:26,592 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 9 hr time horizon... +2026-04-29 09:07:26,614 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:27,697 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:27,721 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:28,656 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 2 hr time horizon... +2026-04-29 09:07:28,682 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:28,793 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 15 hr time horizon... +2026-04-29 09:07:28,824 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:29,587 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:29,609 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:29,745 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 8 hr time horizon... +2026-04-29 09:07:29,770 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:30,262 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 4 hr time horizon... +2026-04-29 09:07:30,283 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:31,400 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 5 hr time horizon... +2026-04-29 09:07:31,420 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:31,588 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 5 hr time horizon... +2026-04-29 09:07:31,615 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:33,853 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 5 hr time horizon... +2026-04-29 09:07:33,871 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:34,176 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 8 hr time horizon... +2026-04-29 09:07:34,201 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 9 hr time horizon... +2026-04-29 09:07:34,575 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 1 hr time horizon... +2026-04-29 09:07:34,595 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:37,618 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 2 hr time horizon... +2026-04-29 09:07:37,642 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:37,767 - __main__ - INFO - Finished processing 2018-01-24 20:00:00 15 hr time horizon... +2026-04-29 09:07:37,797 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:38,283 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 1 hr time horizon... +2026-04-29 09:07:38,307 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:38,505 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 13 hr time horizon... +2026-04-29 09:07:38,527 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:39,130 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 17 hr time horizon... +2026-04-29 09:07:39,156 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 5 hr time horizon... +2026-04-29 09:07:39,343 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:39,365 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:41,102 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 7 hr time horizon... +2026-04-29 09:07:41,125 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:42,453 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 11 hr time horizon... +2026-04-29 09:07:42,482 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:43,206 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 14 hr time horizon... +2026-04-29 09:07:43,230 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:44,196 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 10 hr time horizon... +2026-04-29 09:07:44,220 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:44,384 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 15 hr time horizon... +2026-04-29 09:07:44,410 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:44,582 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:44,606 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:45,803 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 15 hr time horizon... +2026-04-29 09:07:45,825 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:46,379 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 17 hr time horizon... +2026-04-29 09:07:46,403 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 17 hr time horizon... +2026-04-29 09:07:46,406 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 4 hr time horizon... +2026-04-29 09:07:46,427 - __main__ - INFO - Processing values: 2018-01-22 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:47,588 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 7 hr time horizon... +2026-04-29 09:07:47,607 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:49,409 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 6 hr time horizon... +2026-04-29 09:07:49,432 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:49,660 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 9 hr time horizon... +2026-04-29 09:07:49,681 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:50,207 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:50,228 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:52,820 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 9 hr time horizon... +2026-04-29 09:07:52,843 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:52,983 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 7 hr time horizon... +2026-04-29 09:07:53,003 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:53,254 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 1 hr time horizon... +2026-04-29 09:07:53,275 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:53,654 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 5 hr time horizon... +2026-04-29 09:07:53,671 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:53,747 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 15 hr time horizon... +2026-04-29 09:07:53,773 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:54,462 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:54,486 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:55,679 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 14 hr time horizon... +2026-04-29 09:07:55,703 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:57,456 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 1 hr time horizon... +2026-04-29 09:07:57,480 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:58,394 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:58,414 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:58,689 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 8 hr time horizon... +2026-04-29 09:07:58,712 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:07:59,576 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 8 hr time horizon... +2026-04-29 09:07:59,597 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:00,293 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:00,314 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:00,708 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 17 hr time horizon... +2026-04-29 09:08:00,729 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 14 hr time horizon... +2026-04-29 09:08:00,855 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:00,876 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:01,628 - __main__ - INFO - Finished processing 2018-01-22 22:00:00 15 hr time horizon... +2026-04-29 09:08:01,649 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:03,061 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 10 hr time horizon... +2026-04-29 09:08:03,082 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:04,143 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 4 hr time horizon... +2026-04-29 09:08:04,145 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 7 hr time horizon... +2026-04-29 09:08:04,181 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 2 hr time horizon... +2026-04-29 09:08:04,184 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 14 hr time horizon... +2026-04-29 09:08:04,288 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 12 hr time horizon... +2026-04-29 09:08:04,309 - __main__ - INFO - Processing values: 2018-01-22 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:07,557 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:07,584 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:07,814 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 4 hr time horizon... +2026-04-29 09:08:07,839 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:08,078 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 15 hr time horizon... +2026-04-29 09:08:08,100 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:08,753 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 8 hr time horizon... +2026-04-29 09:08:08,786 - __main__ - INFO - Processing values: 2018-01-15 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:08,974 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 9 hr time horizon... +2026-04-29 09:08:09,023 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:09,327 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 1 hr time horizon... +2026-04-29 09:08:09,344 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:10,295 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:10,316 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:11,686 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 13 hr time horizon... +2026-04-29 09:08:11,710 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:12,305 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 8 hr time horizon... +2026-04-29 09:08:12,325 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:14,161 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 4 hr time horizon... +2026-04-29 09:08:14,189 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:14,264 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 11 hr time horizon... +2026-04-29 09:08:14,287 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:15,843 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 14 hr time horizon... +2026-04-29 09:08:15,877 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:16,459 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 8 hr time horizon... +2026-04-29 09:08:16,482 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:16,716 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 14 hr time horizon... +2026-04-29 09:08:16,741 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:17,767 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 11 hr time horizon... +2026-04-29 09:08:17,805 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:18,809 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:18,831 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 11 hr time horizon... +2026-04-29 09:08:18,932 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 5 hr time horizon... +2026-04-29 09:08:18,954 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:19,467 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 2 hr time horizon... +2026-04-29 09:08:19,488 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:19,706 - __main__ - INFO - Finished processing 2018-01-22 22:00:00 11 hr time horizon... +2026-04-29 09:08:19,728 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 12 hr time horizon... +2026-04-29 09:08:20,294 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 14 hr time horizon... +2026-04-29 09:08:20,319 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:23,987 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 1 hr time horizon... +2026-04-29 09:08:24,011 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:24,084 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 1 hr time horizon... +2026-04-29 09:08:24,112 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:24,169 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 1 hr time horizon... +2026-04-29 09:08:24,189 - __main__ - INFO - Processing values: 2018-01-26 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:24,658 - __main__ - INFO - Finished processing 2018-01-15 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:24,682 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:25,270 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 2 hr time horizon... +2026-04-29 09:08:25,293 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:26,162 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 8 hr time horizon... +2026-04-29 09:08:26,183 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:27,564 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 14 hr time horizon... +2026-04-29 09:08:27,587 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:28,234 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 9 hr time horizon... +2026-04-29 09:08:28,255 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:29,026 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 13 hr time horizon... +2026-04-29 09:08:29,051 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:30,810 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 14 hr time horizon... +2026-04-29 09:08:30,831 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:31,124 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 14 hr time horizon... +2026-04-29 09:08:31,148 - __main__ - INFO - Processing values: 2018-01-11 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:08:31,796 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:31,824 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:32,670 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 2 hr time horizon... +2026-04-29 09:08:32,691 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:33,210 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 12 hr time horizon... +2026-04-29 09:08:33,240 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:33,980 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 7 hr time horizon... +2026-04-29 09:08:34,006 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:35,043 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 11 hr time horizon... +2026-04-29 09:08:35,066 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:35,315 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 12 hr time horizon... +2026-04-29 09:08:35,340 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:36,088 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 13 hr time horizon... +2026-04-29 09:08:36,110 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 11 hr time horizon... +2026-04-29 09:08:36,275 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 15 hr time horizon... +2026-04-29 09:08:36,296 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:39,856 - __main__ - INFO - Finished processing 2018-01-26 15:00:00 8 hr time horizon... +2026-04-29 09:08:39,880 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:40,527 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 3 hr time horizon... +2026-04-29 09:08:40,553 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:40,755 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 9 hr time horizon... +2026-04-29 09:08:40,777 - __main__ - INFO - Processing values: 2018-01-14 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:41,100 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 4 hr time horizon... +2026-04-29 09:08:41,122 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:41,248 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 1 hr time horizon... +2026-04-29 09:08:41,269 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:42,936 - __main__ - INFO - Finished processing 2018-01-01 23:00:00 3 hr time horizon... +2026-04-29 09:08:42,965 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:43,627 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 16 hr time horizon... +2026-04-29 09:08:43,650 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:44,229 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 2 hr time horizon... +2026-04-29 09:08:44,249 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:44,693 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 14 hr time horizon... +2026-04-29 09:08:44,723 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:47,128 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:47,158 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:47,231 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 5 hr time horizon... +2026-04-29 09:08:47,251 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:47,936 - __main__ - INFO - Finished processing 2018-01-11 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:47,961 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:48,163 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 10 hr time horizon... +2026-04-29 09:08:48,186 - __main__ - INFO - Processing values: 2018-01-07 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:48,625 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 5 hr time horizon... +2026-04-29 09:08:48,648 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:48,859 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 18 hr time horizon... +2026-04-29 09:08:48,886 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:50,618 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:50,639 - __main__ - INFO - Processing values: 2018-01-15 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:51,281 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 14 hr time horizon... +2026-04-29 09:08:51,305 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:51,947 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 11 hr time horizon... +2026-04-29 09:08:51,967 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:52,198 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 9 hr time horizon... +2026-04-29 09:08:52,221 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 6 hr time horizon... +2026-04-29 09:08:52,768 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 17 hr time horizon... +2026-04-29 09:08:52,791 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:56,320 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 9 hr time horizon... +2026-04-29 09:08:56,343 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:57,646 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 5 hr time horizon... +2026-04-29 09:08:57,649 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 1 hr time horizon... +2026-04-29 09:08:57,672 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 8 hr time horizon... +2026-04-29 09:08:57,673 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:58,482 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 4 hr time horizon... +2026-04-29 09:08:58,502 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:08:59,243 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 15 hr time horizon... +2026-04-29 09:08:59,267 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:00,045 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 15 hr time horizon... +2026-04-29 09:09:00,073 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:00,249 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 3 hr time horizon... +2026-04-29 09:09:00,268 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:02,381 - __main__ - INFO - Finished processing 2018-01-07 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:02,402 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:02,515 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 11 hr time horizon... +2026-04-29 09:09:02,534 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:02,920 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 1 hr time horizon... +2026-04-29 09:09:02,937 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:03,031 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 15 hr time horizon... +2026-04-29 09:09:03,053 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:03,461 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 2 hr time horizon... +2026-04-29 09:09:03,479 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:03,633 - __main__ - INFO - Finished processing 2018-01-14 09:00:00 5 hr time horizon... +2026-04-29 09:09:03,651 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:05,880 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 6 hr time horizon... +2026-04-29 09:09:05,898 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 6 hr time horizon... +2026-04-29 09:09:06,326 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 16 hr time horizon... +2026-04-29 09:09:06,345 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:09,783 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 17 hr time horizon... +2026-04-29 09:09:09,803 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:17,755 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 3 hr time horizon... +2026-04-29 09:09:17,773 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 4 hr time horizon... +2026-04-29 09:09:18,120 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 10 hr time horizon... +2026-04-29 09:09:18,138 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:20,856 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 9 hr time horizon... +2026-04-29 09:09:20,874 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:23,073 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 6 hr time horizon... +2026-04-29 09:09:23,090 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:24,651 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 8 hr time horizon... +2026-04-29 09:09:24,670 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:24,742 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 15 hr time horizon... +2026-04-29 09:09:24,763 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:25,718 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 8 hr time horizon... +2026-04-29 09:09:25,735 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:25,972 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 15 hr time horizon... +2026-04-29 09:09:25,989 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:27,826 - __main__ - INFO - Finished processing 2018-01-15 16:00:00 10 hr time horizon... +2026-04-29 09:09:27,843 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:30,524 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:30,547 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:30,902 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 2 hr time horizon... +2026-04-29 09:09:30,918 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:32,727 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 1 hr time horizon... +2026-04-29 09:09:32,742 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 18 hr time horizon... +2026-04-29 09:09:33,269 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 7 hr time horizon... +2026-04-29 09:09:33,286 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:37,054 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 16 hr time horizon... +2026-04-29 09:09:37,076 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:37,202 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 10 hr time horizon... +2026-04-29 09:09:37,220 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:38,766 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 17 hr time horizon... +2026-04-29 09:09:38,786 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:39,401 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:39,422 - __main__ - INFO - Processing values: 2018-01-11 12:00:00 5 hr time horizon... +2026-04-29 09:09:39,565 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 17 hr time horizon... +2026-04-29 09:09:39,587 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:40,358 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 1 hr time horizon... +2026-04-29 09:09:40,378 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:40,893 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 10 hr time horizon... +2026-04-29 09:09:40,911 - __main__ - INFO - Processing values: 2018-01-09 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:42,954 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 7 hr time horizon... +2026-04-29 09:09:42,973 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:43,427 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 7 hr time horizon... +2026-04-29 09:09:43,450 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:45,434 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 18 hr time horizon... +2026-04-29 09:09:45,454 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 18 hr time horizon... +2026-04-29 09:09:45,823 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 3 hr time horizon... +2026-04-29 09:09:45,842 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:50,072 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 17 hr time horizon... +2026-04-29 09:09:50,091 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:50,350 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:50,368 - __main__ - INFO - Processing values: 2018-01-17 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:50,958 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 5 hr time horizon... +2026-04-29 09:09:50,975 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:51,303 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 15 hr time horizon... +2026-04-29 09:09:51,324 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:51,813 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 1 hr time horizon... +2026-04-29 09:09:51,833 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:53,036 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 13 hr time horizon... +2026-04-29 09:09:53,058 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:53,194 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:53,217 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:53,914 - __main__ - INFO - Finished processing 2018-01-11 12:00:00 5 hr time horizon... +2026-04-29 09:09:53,939 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:54,645 - __main__ - INFO - Finished processing 2018-01-09 06:00:00 18 hr time horizon... +2026-04-29 09:09:54,666 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:55,241 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 9 hr time horizon... +2026-04-29 09:09:55,262 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:56,413 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 3 hr time horizon... +2026-04-29 09:09:56,432 - __main__ - INFO - Processing values: 2018-01-07 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:09:59,578 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 14 hr time horizon... +2026-04-29 09:09:59,599 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:03,845 - __main__ - INFO - Finished processing 2018-01-17 09:00:00 14 hr time horizon... +2026-04-29 09:10:03,864 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:03,958 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 16 hr time horizon... +2026-04-29 09:10:03,978 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:04,286 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 18 hr time horizon... +2026-04-29 09:10:04,309 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:05,338 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 18 hr time horizon... +2026-04-29 09:10:05,362 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:06,182 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 18 hr time horizon... +2026-04-29 09:10:06,210 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:08,123 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 2 hr time horizon... +2026-04-29 09:10:08,145 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:08,303 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 12 hr time horizon... +2026-04-29 09:10:08,328 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:08,592 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 16 hr time horizon... +2026-04-29 09:10:08,612 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 7 hr time horizon... +2026-04-29 09:10:08,784 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 8 hr time horizon... +2026-04-29 09:10:08,806 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:09,025 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:09,045 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:09,526 - __main__ - INFO - Finished processing 2018-01-07 15:00:00 10 hr time horizon... +2026-04-29 09:10:09,551 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:11,446 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:11,468 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:12,547 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 7 hr time horizon... +2026-04-29 09:10:12,568 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:13,905 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 3 hr time horizon... +2026-04-29 09:10:13,928 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:16,911 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 7 hr time horizon... +2026-04-29 09:10:16,934 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:17,758 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 14 hr time horizon... +2026-04-29 09:10:17,781 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:18,466 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 17 hr time horizon... +2026-04-29 09:10:18,488 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:20,568 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:20,592 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:21,441 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 15 hr time horizon... +2026-04-29 09:10:21,462 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 16 hr time horizon... +2026-04-29 09:10:21,492 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 7 hr time horizon... +2026-04-29 09:10:21,512 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:21,698 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 1 hr time horizon... +2026-04-29 09:10:21,719 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 3 hr time horizon... +2026-04-29 09:10:21,763 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:21,784 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:21,895 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 8 hr time horizon... +2026-04-29 09:10:21,917 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:22,378 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 7 hr time horizon... +2026-04-29 09:10:22,398 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:22,748 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 7 hr time horizon... +2026-04-29 09:10:22,770 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:22,924 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 9 hr time horizon... +2026-04-29 09:10:22,942 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:25,209 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:25,235 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:25,405 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 14 hr time horizon... +2026-04-29 09:10:25,428 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:25,950 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 16 hr time horizon... +2026-04-29 09:10:25,969 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:27,095 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 14 hr time horizon... +2026-04-29 09:10:27,116 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:30,274 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:30,294 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:30,775 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 6 hr time horizon... +2026-04-29 09:10:30,793 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:32,958 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 17 hr time horizon... +2026-04-29 09:10:32,979 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:34,644 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 2 hr time horizon... +2026-04-29 09:10:34,677 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:10:35,451 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:35,475 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:35,776 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 16 hr time horizon... +2026-04-29 09:10:35,797 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:35,880 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 3 hr time horizon... +2026-04-29 09:10:35,898 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,149 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 18 hr time horizon... +2026-04-29 09:10:36,171 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,271 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 16 hr time horizon... +2026-04-29 09:10:36,299 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 6 hr time horizon... +2026-04-29 09:10:36,380 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 11 hr time horizon... +2026-04-29 09:10:36,403 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,466 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,494 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 15 hr time horizon... +2026-04-29 09:10:36,709 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,732 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:36,828 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 17 hr time horizon... +2026-04-29 09:10:36,854 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:38,836 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 11 hr time horizon... +2026-04-29 09:10:38,855 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:39,071 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 17 hr time horizon... +2026-04-29 09:10:39,099 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:40,100 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 18 hr time horizon... +2026-04-29 09:10:40,118 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:40,985 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 18 hr time horizon... +2026-04-29 09:10:41,007 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:45,790 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:45,815 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:46,816 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 9 hr time horizon... +2026-04-29 09:10:46,840 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:48,413 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 9 hr time horizon... +2026-04-29 09:10:48,436 - __main__ - INFO - Processing values: 2018-01-20 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:49,758 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 13 hr time horizon... +2026-04-29 09:10:49,785 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:49,985 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 5 hr time horizon... +2026-04-29 09:10:50,015 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:50,759 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 14 hr time horizon... +2026-04-29 09:10:50,789 - __main__ - INFO - Processing values: 2018-01-21 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:50,866 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 6 hr time horizon... +2026-04-29 09:10:50,886 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:51,030 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 1 hr time horizon... +2026-04-29 09:10:51,061 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:51,091 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 3 hr time horizon... +2026-04-29 09:10:51,112 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:51,779 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 5 hr time horizon... +2026-04-29 09:10:51,800 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:52,684 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 6 hr time horizon... +2026-04-29 09:10:52,712 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:53,099 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 15 hr time horizon... +2026-04-29 09:10:53,126 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:53,208 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 7 hr time horizon... +2026-04-29 09:10:53,231 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:54,456 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:54,477 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:54,521 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 6 hr time horizon... +2026-04-29 09:10:54,546 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:55,369 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 13 hr time horizon... +2026-04-29 09:10:55,396 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:56,302 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 11 hr time horizon... +2026-04-29 09:10:56,312 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 10 hr time horizon... +2026-04-29 09:10:56,328 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 4 hr time horizon... +2026-04-29 09:10:56,337 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:56,897 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 12 hr time horizon... +2026-04-29 09:10:56,923 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:10:57,843 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 10 hr time horizon... +2026-04-29 09:10:57,865 - __main__ - INFO - Processing values: 2018-01-13 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:02,212 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 8 hr time horizon... +2026-04-29 09:11:02,236 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:03,201 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:03,231 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:04,344 - __main__ - INFO - Finished processing 2018-01-20 18:00:00 15 hr time horizon... +2026-04-29 09:11:04,364 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:05,028 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 4 hr time horizon... +2026-04-29 09:11:05,038 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 9 hr time horizon... +2026-04-29 09:11:05,052 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 12 hr time horizon... +2026-04-29 09:11:05,061 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:06,026 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 18 hr time horizon... +2026-04-29 09:11:06,034 - __main__ - INFO - Finished processing 2018-01-21 07:00:00 18 hr time horizon... +2026-04-29 09:11:06,052 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 1 hr time horizon... +2026-04-29 09:11:06,063 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 2 hr time horizon... +2026-04-29 09:11:06,069 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 17 hr time horizon... +2026-04-29 09:11:06,093 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 4 hr time horizon... +2026-04-29 09:11:06,160 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 8 hr time horizon... +2026-04-29 09:11:06,185 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:06,475 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 10 hr time horizon... +2026-04-29 09:11:06,495 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:08,146 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 2 hr time horizon... +2026-04-29 09:11:08,165 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:09,032 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 9 hr time horizon... +2026-04-29 09:11:09,052 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:09,649 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 6 hr time horizon... +2026-04-29 09:11:09,677 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:09,723 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 3 hr time horizon... +2026-04-29 09:11:09,743 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 13 hr time horizon... +2026-04-29 09:11:10,194 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 5 hr time horizon... +2026-04-29 09:11:10,215 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 18 hr time horizon... +2026-04-29 09:11:10,318 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 9 hr time horizon... +2026-04-29 09:11:10,341 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:16,637 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 13 hr time horizon... +2026-04-29 09:11:16,658 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:17,605 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 15 hr time horizon... +2026-04-29 09:11:17,626 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:18,614 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 7 hr time horizon... +2026-04-29 09:11:18,636 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:18,793 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:18,817 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:19,314 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:19,332 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:20,336 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 4 hr time horizon... +2026-04-29 09:11:20,359 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:21,013 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 2 hr time horizon... +2026-04-29 09:11:21,031 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:22,140 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 12 hr time horizon... +2026-04-29 09:11:22,159 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:22,331 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 10 hr time horizon... +2026-04-29 09:11:22,335 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:22,365 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 6 hr time horizon... +2026-04-29 09:11:22,366 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:22,980 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:23,011 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:23,088 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 7 hr time horizon... +2026-04-29 09:11:23,110 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 10 hr time horizon... +2026-04-29 09:11:23,136 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 13 hr time horizon... +2026-04-29 09:11:23,158 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:24,288 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 16 hr time horizon... +2026-04-29 09:11:24,313 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:25,308 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 18 hr time horizon... +2026-04-29 09:11:25,329 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:26,190 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 5 hr time horizon... +2026-04-29 09:11:26,210 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:30,966 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 1 hr time horizon... +2026-04-29 09:11:30,985 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:32,608 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 9 hr time horizon... +2026-04-29 09:11:32,632 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:32,688 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 9 hr time horizon... +2026-04-29 09:11:32,708 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:34,036 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 7 hr time horizon... +2026-04-29 09:11:34,061 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:34,180 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 6 hr time horizon... +2026-04-29 09:11:34,200 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:34,956 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 3 hr time horizon... +2026-04-29 09:11:34,980 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:35,349 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:35,383 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:36,442 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 17 hr time horizon... +2026-04-29 09:11:36,467 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 5 hr time horizon... +2026-04-29 09:11:36,467 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 6 hr time horizon... +2026-04-29 09:11:36,499 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:37,194 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 10 hr time horizon... +2026-04-29 09:11:37,213 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:37,485 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 15 hr time horizon... +2026-04-29 09:11:37,505 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:37,634 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 6 hr time horizon... +2026-04-29 09:11:37,654 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 14 hr time horizon... +2026-04-29 09:11:37,677 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 16 hr time horizon... +2026-04-29 09:11:37,699 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:38,753 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 12 hr time horizon... +2026-04-29 09:11:38,773 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:42,449 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 10 hr time horizon... +2026-04-29 09:11:42,469 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 15 hr time horizon... +2026-04-29 09:11:42,637 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:42,656 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:43,614 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 16 hr time horizon... +2026-04-29 09:11:43,632 - __main__ - INFO - Processing values: 2018-01-17 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:44,674 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 16 hr time horizon... +2026-04-29 09:11:44,696 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:46,171 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 1 hr time horizon... +2026-04-29 09:11:46,188 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:46,752 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 2 hr time horizon... +2026-04-29 09:11:46,773 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:47,356 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 12 hr time horizon... +2026-04-29 09:11:47,384 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:49,140 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 7 hr time horizon... +2026-04-29 09:11:49,159 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:49,516 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 5 hr time horizon... +2026-04-29 09:11:49,536 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:50,468 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 12 hr time horizon... +2026-04-29 09:11:50,489 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:50,849 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 14 hr time horizon... +2026-04-29 09:11:50,874 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 17 hr time horizon... +2026-04-29 09:11:50,994 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:51,023 - __main__ - INFO - Processing values: 2018-01-17 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:51,146 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 12 hr time horizon... +2026-04-29 09:11:51,170 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:52,082 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 14 hr time horizon... +2026-04-29 09:11:52,104 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:52,902 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 12 hr time horizon... +2026-04-29 09:11:52,925 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:53,678 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 13 hr time horizon... +2026-04-29 09:11:53,699 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:56,489 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 6 hr time horizon... +2026-04-29 09:11:56,516 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:56,925 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 15 hr time horizon... +2026-04-29 09:11:56,957 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 10 hr time horizon... +2026-04-29 09:11:56,983 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 10 hr time horizon... +2026-04-29 09:11:57,006 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:57,521 - __main__ - INFO - Finished processing 2018-01-17 09:00:00 9 hr time horizon... +2026-04-29 09:11:57,544 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:59,683 - __main__ - INFO - Finished processing 2018-01-13 22:00:00 11 hr time horizon... +2026-04-29 09:11:59,703 - __main__ - INFO - Processing values: 2018-01-21 10:00:00 5 hr time horizon... +2026-04-29 09:11:59,870 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:11:59,893 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:02,149 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 1 hr time horizon... +2026-04-29 09:12:02,169 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:02,967 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 10 hr time horizon... +2026-04-29 09:12:02,987 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:03,228 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 16 hr time horizon... +2026-04-29 09:12:03,256 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:04,200 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 2 hr time horizon... +2026-04-29 09:12:04,224 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:04,860 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:04,884 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:05,439 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 6 hr time horizon... +2026-04-29 09:12:05,469 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:05,498 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 2 hr time horizon... +2026-04-29 09:12:05,518 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:05,869 - __main__ - INFO - Finished processing 2018-01-17 12:00:00 17 hr time horizon... +2026-04-29 09:12:05,891 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:06,864 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 11 hr time horizon... +2026-04-29 09:12:06,868 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 14 hr time horizon... +2026-04-29 09:12:06,892 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 15 hr time horizon... +2026-04-29 09:12:06,894 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:08,255 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 17 hr time horizon... +2026-04-29 09:12:08,278 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:09,002 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 10 hr time horizon... +2026-04-29 09:12:09,034 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:09,476 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 17 hr time horizon... +2026-04-29 09:12:09,501 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:11,820 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:11,845 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 8 hr time horizon... +2026-04-29 09:12:11,933 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:11,954 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 12 hr time horizon... +2026-04-29 09:12:11,973 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 16 hr time horizon... +2026-04-29 09:12:11,994 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:12,481 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 10 hr time horizon... +2026-04-29 09:12:12,503 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:14,720 - __main__ - INFO - Finished processing 2018-01-21 10:00:00 5 hr time horizon... +2026-04-29 09:12:14,739 - __main__ - INFO - Processing values: 2018-01-25 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:15,542 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 6 hr time horizon... +2026-04-29 09:12:15,569 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:16,588 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 16 hr time horizon... +2026-04-29 09:12:16,610 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:17,949 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 14 hr time horizon... +2026-04-29 09:12:17,978 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:18,080 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 13 hr time horizon... +2026-04-29 09:12:18,102 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:18,235 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:18,267 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:19,399 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:19,420 - __main__ - INFO - Processing values: 2018-01-08 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:19,912 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 10 hr time horizon... +2026-04-29 09:12:19,934 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:20,599 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 4 hr time horizon... +2026-04-29 09:12:20,621 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:20,752 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 15 hr time horizon... +2026-04-29 09:12:20,771 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:21,771 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:21,794 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:22,289 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:22,310 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:22,711 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 1 hr time horizon... +2026-04-29 09:12:22,727 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:23,483 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 12 hr time horizon... +2026-04-29 09:12:23,510 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:23,668 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 15 hr time horizon... +2026-04-29 09:12:23,689 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:24,860 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 11 hr time horizon... +2026-04-29 09:12:24,880 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:25,454 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:25,475 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 12 hr time horizon... +2026-04-29 09:12:25,975 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 12 hr time horizon... +2026-04-29 09:12:25,995 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 2 hr time horizon... +2026-04-29 09:12:26,016 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 8 hr time horizon... +2026-04-29 09:12:26,038 - __main__ - INFO - Processing values: 2018-01-16 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:28,732 - __main__ - INFO - Finished processing 2018-01-25 22:00:00 15 hr time horizon... +2026-04-29 09:12:28,755 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:30,000 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 10 hr time horizon... +2026-04-29 09:12:30,017 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:31,539 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 17 hr time horizon... +2026-04-29 09:12:31,558 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:32,369 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 13 hr time horizon... +2026-04-29 09:12:32,388 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:35,595 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 11 hr time horizon... +2026-04-29 09:12:35,620 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:36,078 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 7 hr time horizon... +2026-04-29 09:12:36,110 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:37,947 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 2 hr time horizon... +2026-04-29 09:12:37,975 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:39,892 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:39,919 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 7 hr time horizon... +2026-04-29 09:12:39,942 - __main__ - INFO - Finished processing 2018-01-08 21:00:00 2 hr time horizon... +2026-04-29 09:12:39,964 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:41,570 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 13 hr time horizon... +2026-04-29 09:12:41,590 - __main__ - INFO - Processing values: 2018-01-10 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:41,948 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 17 hr time horizon... +2026-04-29 09:12:41,969 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:43,259 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 13 hr time horizon... +2026-04-29 09:12:43,277 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:43,708 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 2 hr time horizon... +2026-04-29 09:12:43,729 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:44,172 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 12 hr time horizon... +2026-04-29 09:12:44,194 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:44,421 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 18 hr time horizon... +2026-04-29 09:12:44,442 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 16 hr time horizon... +2026-04-29 09:12:44,549 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 3 hr time horizon... +2026-04-29 09:12:44,570 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:45,272 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 17 hr time horizon... +2026-04-29 09:12:45,294 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:46,819 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:46,847 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:47,444 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 2 hr time horizon... +2026-04-29 09:12:47,464 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:48,669 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 15 hr time horizon... +2026-04-29 09:12:48,692 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:50,270 - __main__ - INFO - Finished processing 2018-01-16 11:00:00 18 hr time horizon... +2026-04-29 09:12:50,288 - __main__ - INFO - Processing values: 2018-01-21 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:50,549 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 4 hr time horizon... +2026-04-29 09:12:50,567 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:51,130 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 6 hr time horizon... +2026-04-29 09:12:51,145 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:53,400 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 15 hr time horizon... +2026-04-29 09:12:53,421 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:53,468 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 2 hr time horizon... +2026-04-29 09:12:53,488 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:54,614 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 7 hr time horizon... +2026-04-29 09:12:54,635 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:55,236 - __main__ - INFO - Finished processing 2018-01-10 23:00:00 13 hr time horizon... +2026-04-29 09:12:55,258 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:55,842 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 7 hr time horizon... +2026-04-29 09:12:55,859 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:56,778 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 17 hr time horizon... +2026-04-29 09:12:56,799 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:57,183 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 15 hr time horizon... +2026-04-29 09:12:57,203 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:58,609 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 16 hr time horizon... +2026-04-29 09:12:58,640 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:58,678 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:58,700 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:59,295 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 4 hr time horizon... +2026-04-29 09:12:59,314 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:12:59,827 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 7 hr time horizon... +2026-04-29 09:12:59,849 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:00,186 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 6 hr time horizon... +2026-04-29 09:13:00,208 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:00,737 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 18 hr time horizon... +2026-04-29 09:13:00,761 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:01,427 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:01,444 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:04,193 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 2 hr time horizon... +2026-04-29 09:13:04,218 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:05,036 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 18 hr time horizon... +2026-04-29 09:13:05,062 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:05,915 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 9 hr time horizon... +2026-04-29 09:13:05,937 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:07,912 - __main__ - INFO - Finished processing 2018-01-21 10:00:00 16 hr time horizon... +2026-04-29 09:13:07,936 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:09,259 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 6 hr time horizon... +2026-04-29 09:13:09,281 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:09,339 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 2 hr time horizon... +2026-04-29 09:13:09,362 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 7 hr time horizon... +2026-04-29 09:13:09,570 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 5 hr time horizon... +2026-04-29 09:13:09,596 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:09,773 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 5 hr time horizon... +2026-04-29 09:13:09,794 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 2 hr time horizon... +2026-04-29 09:13:09,814 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 12 hr time horizon... +2026-04-29 09:13:09,836 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:11,205 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 16 hr time horizon... +2026-04-29 09:13:11,226 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:12,570 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 9 hr time horizon... +2026-04-29 09:13:12,594 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:14,313 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 14 hr time horizon... +2026-04-29 09:13:14,344 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:14,708 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 15 hr time horizon... +2026-04-29 09:13:14,736 - __main__ - INFO - Processing values: 2018-01-02 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:14,970 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 9 hr time horizon... +2026-04-29 09:13:14,992 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:15,506 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:15,528 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 1 hr time horizon... +2026-04-29 09:13:15,620 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 18 hr time horizon... +2026-04-29 09:13:15,641 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:15,981 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 2 hr time horizon... +2026-04-29 09:13:16,001 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:16,200 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:16,223 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:17,488 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 8 hr time horizon... +2026-04-29 09:13:17,508 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:19,098 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 7 hr time horizon... +2026-04-29 09:13:19,122 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:19,987 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 13 hr time horizon... +2026-04-29 09:13:20,009 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:20,883 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 3 hr time horizon... +2026-04-29 09:13:20,903 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:13:22,002 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:22,023 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:23,198 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 2 hr time horizon... +2026-04-29 09:13:23,220 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:23,271 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 2 hr time horizon... +2026-04-29 09:13:23,291 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:23,412 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 11 hr time horizon... +2026-04-29 09:13:23,434 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:25,007 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 7 hr time horizon... +2026-04-29 09:13:25,028 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:25,286 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:25,310 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:25,927 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 15 hr time horizon... +2026-04-29 09:13:25,952 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:26,993 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:27,022 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:27,493 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 1 hr time horizon... +2026-04-29 09:13:27,515 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:28,895 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 12 hr time horizon... +2026-04-29 09:13:28,915 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:29,061 - __main__ - INFO - Finished processing 2018-01-02 00:00:00 14 hr time horizon... +2026-04-29 09:13:29,086 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:29,198 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 6 hr time horizon... +2026-04-29 09:13:29,218 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:29,374 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 4 hr time horizon... +2026-04-29 09:13:29,394 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:29,918 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 2 hr time horizon... +2026-04-29 09:13:29,939 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 4 hr time horizon... +2026-04-29 09:13:30,130 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 4 hr time horizon... +2026-04-29 09:13:30,147 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:33,020 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:33,057 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:34,238 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 1 hr time horizon... +2026-04-29 09:13:34,262 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:35,592 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 9 hr time horizon... +2026-04-29 09:13:35,619 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 8 hr time horizon... +2026-04-29 09:13:35,759 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 9 hr time horizon... +2026-04-29 09:13:35,784 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:38,042 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:38,062 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:38,547 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 16 hr time horizon... +2026-04-29 09:13:38,567 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:38,663 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 13 hr time horizon... +2026-04-29 09:13:38,685 - __main__ - INFO - Processing values: 2018-01-22 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:39,863 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 11 hr time horizon... +2026-04-29 09:13:39,890 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:39,934 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 6 hr time horizon... +2026-04-29 09:13:39,953 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 5 hr time horizon... +2026-04-29 09:13:40,028 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 11 hr time horizon... +2026-04-29 09:13:40,051 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:40,915 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 7 hr time horizon... +2026-04-29 09:13:40,937 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:41,555 - __main__ - INFO - Finished processing 2018-01-01 23:00:00 18 hr time horizon... +2026-04-29 09:13:41,580 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:44,060 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:44,084 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:44,592 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 18 hr time horizon... +2026-04-29 09:13:44,619 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:44,735 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 14 hr time horizon... +2026-04-29 09:13:44,761 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:45,446 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 18 hr time horizon... +2026-04-29 09:13:45,467 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:46,033 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 16 hr time horizon... +2026-04-29 09:13:46,057 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:46,374 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 11 hr time horizon... +2026-04-29 09:13:46,395 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:46,974 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 4 hr time horizon... +2026-04-29 09:13:46,998 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:49,165 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 3 hr time horizon... +2026-04-29 09:13:49,190 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:50,034 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 7 hr time horizon... +2026-04-29 09:13:50,051 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:50,898 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:50,920 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:51,451 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 2 hr time horizon... +2026-04-29 09:13:51,469 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:51,604 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 8 hr time horizon... +2026-04-29 09:13:51,626 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:53,744 - __main__ - INFO - Finished processing 2018-01-22 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:53,769 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:53,856 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 10 hr time horizon... +2026-04-29 09:13:53,878 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:55,367 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 5 hr time horizon... +2026-04-29 09:13:55,389 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:55,526 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 7 hr time horizon... +2026-04-29 09:13:55,549 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:55,681 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 3 hr time horizon... +2026-04-29 09:13:55,707 - __main__ - INFO - Processing values: 2018-01-13 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:57,420 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 18 hr time horizon... +2026-04-29 09:13:57,441 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:57,530 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 11 hr time horizon... +2026-04-29 09:13:57,551 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:58,355 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 15 hr time horizon... +2026-04-29 09:13:58,377 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:58,876 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 3 hr time horizon... +2026-04-29 09:13:58,899 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:59,313 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 8 hr time horizon... +2026-04-29 09:13:59,332 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:13:59,727 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 2 hr time horizon... +2026-04-29 09:13:59,746 - __main__ - INFO - Processing values: 2018-01-02 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:00,937 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:00,958 - __main__ - INFO - Processing values: 2018-01-04 01:00:00 9 hr time horizon... +2026-04-29 09:14:01,044 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 3 hr time horizon... +2026-04-29 09:14:01,063 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:01,509 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 7 hr time horizon... +2026-04-29 09:14:01,531 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 16 hr time horizon... +2026-04-29 09:14:01,975 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 17 hr time horizon... +2026-04-29 09:14:01,998 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:08,648 - __main__ - INFO - Finished processing 2018-01-13 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:08,667 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:09,964 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 1 hr time horizon... +2026-04-29 09:14:09,989 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:10,738 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 5 hr time horizon... +2026-04-29 09:14:10,759 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:11,424 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 7 hr time horizon... +2026-04-29 09:14:11,450 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:11,649 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 10 hr time horizon... +2026-04-29 09:14:11,672 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:12,609 - __main__ - INFO - Finished processing 2018-01-02 20:00:00 10 hr time horizon... +2026-04-29 09:14:12,632 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:13,821 - __main__ - INFO - Finished processing 2018-01-04 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:13,839 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:14,698 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 12 hr time horizon... +2026-04-29 09:14:14,721 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 15 hr time horizon... +2026-04-29 09:14:14,789 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:14,807 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 18 hr time horizon... +2026-04-29 09:14:14,912 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 18 hr time horizon... +2026-04-29 09:14:14,935 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:15,946 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 10 hr time horizon... +2026-04-29 09:14:15,966 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 17 hr time horizon... +2026-04-29 09:14:16,221 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 3 hr time horizon... +2026-04-29 09:14:16,240 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:19,979 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 8 hr time horizon... +2026-04-29 09:14:19,996 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:24,193 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 1 hr time horizon... +2026-04-29 09:14:24,210 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:24,653 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:24,676 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 3 hr time horizon... +2026-04-29 09:14:24,727 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 11 hr time horizon... +2026-04-29 09:14:24,746 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 16 hr time horizon... +2026-04-29 09:14:24,759 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:24,778 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 6 hr time horizon... +2026-04-29 09:14:24,820 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 3 hr time horizon... +2026-04-29 09:14:24,840 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 5 hr time horizon... +2026-04-29 09:14:24,867 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 9 hr time horizon... +2026-04-29 09:14:24,885 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:26,031 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 3 hr time horizon... +2026-04-29 09:14:26,051 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:26,182 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 15 hr time horizon... +2026-04-29 09:14:26,204 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:28,232 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:28,257 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:28,485 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 15 hr time horizon... +2026-04-29 09:14:28,512 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:29,104 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 10 hr time horizon... +2026-04-29 09:14:29,127 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:29,354 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 17 hr time horizon... +2026-04-29 09:14:29,375 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 15 hr time horizon... +2026-04-29 09:14:29,454 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 4 hr time horizon... +2026-04-29 09:14:29,472 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:30,230 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 17 hr time horizon... +2026-04-29 09:14:30,253 - __main__ - INFO - Processing values: 2018-01-13 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:33,226 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 14 hr time horizon... +2026-04-29 09:14:33,245 - __main__ - INFO - Processing values: 2018-01-07 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:33,394 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 12 hr time horizon... +2026-04-29 09:14:33,417 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:34,177 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 12 hr time horizon... +2026-04-29 09:14:34,202 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:38,327 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:38,356 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:38,574 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 6 hr time horizon... +2026-04-29 09:14:38,583 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 13 hr time horizon... +2026-04-29 09:14:38,598 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 17 hr time horizon... +2026-04-29 09:14:38,605 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:38,691 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:38,714 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 16 hr time horizon... +2026-04-29 09:14:38,824 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 5 hr time horizon... +2026-04-29 09:14:38,847 - __main__ - INFO - Processing values: 2018-01-21 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:39,667 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 8 hr time horizon... +2026-04-29 09:14:39,677 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 18 hr time horizon... +2026-04-29 09:14:39,691 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 16 hr time horizon... +2026-04-29 09:14:39,702 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:40,165 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 18 hr time horizon... +2026-04-29 09:14:40,192 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:42,488 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:42,513 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:43,302 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 17 hr time horizon... +2026-04-29 09:14:43,323 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:43,562 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 10 hr time horizon... +2026-04-29 09:14:43,588 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:43,597 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 9 hr time horizon... +2026-04-29 09:14:43,618 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 18 hr time horizon... +2026-04-29 09:14:43,714 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 15 hr time horizon... +2026-04-29 09:14:43,733 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:44,165 - __main__ - INFO - Finished processing 2018-01-13 09:00:00 17 hr time horizon... +2026-04-29 09:14:44,181 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 1 hr time horizon... +2026-04-29 09:14:44,536 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 5 hr time horizon... +2026-04-29 09:14:44,557 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:48,581 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 18 hr time horizon... +2026-04-29 09:14:48,603 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 1 hr time horizon... +2026-04-29 09:14:48,743 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 4 hr time horizon... +2026-04-29 09:14:48,766 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:48,919 - __main__ - INFO - Finished processing 2018-01-07 15:00:00 7 hr time horizon... +2026-04-29 09:14:48,947 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:50,569 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 10 hr time horizon... +2026-04-29 09:14:50,592 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:53,328 - __main__ - INFO - Finished processing 2018-01-21 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:53,358 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:54,049 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 18 hr time horizon... +2026-04-29 09:14:54,066 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:54,127 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 13 hr time horizon... +2026-04-29 09:14:54,150 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:54,887 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 16 hr time horizon... +2026-04-29 09:14:54,909 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:55,432 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 10 hr time horizon... +2026-04-29 09:14:55,452 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:55,950 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 18 hr time horizon... +2026-04-29 09:14:55,972 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:56,118 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 16 hr time horizon... +2026-04-29 09:14:56,139 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:57,575 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 14 hr time horizon... +2026-04-29 09:14:57,596 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:58,719 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 17 hr time horizon... +2026-04-29 09:14:58,744 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:58,853 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 16 hr time horizon... +2026-04-29 09:14:58,875 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:58,990 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 13 hr time horizon... +2026-04-29 09:14:59,013 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:59,453 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 5 hr time horizon... +2026-04-29 09:14:59,457 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 18 hr time horizon... +2026-04-29 09:14:59,479 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 9 hr time horizon... +2026-04-29 09:14:59,484 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:14:59,668 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 1 hr time horizon... +2026-04-29 09:14:59,687 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:00,198 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 12 hr time horizon... +2026-04-29 09:15:00,219 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:03,043 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 2 hr time horizon... +2026-04-29 09:15:03,063 - __main__ - INFO - Processing values: 2018-01-03 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:03,305 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 1 hr time horizon... +2026-04-29 09:15:03,324 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:03,810 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 2 hr time horizon... +2026-04-29 09:15:03,841 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:04,910 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 17 hr time horizon... +2026-04-29 09:15:04,935 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:07,484 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 3 hr time horizon... +2026-04-29 09:15:07,501 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:08,447 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 2 hr time horizon... +2026-04-29 09:15:08,468 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:10,214 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 6 hr time horizon... +2026-04-29 09:15:10,244 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:10,413 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 15 hr time horizon... +2026-04-29 09:15:10,442 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:10,965 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 8 hr time horizon... +2026-04-29 09:15:10,992 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:11,037 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 14 hr time horizon... +2026-04-29 09:15:11,062 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:11,473 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 5 hr time horizon... +2026-04-29 09:15:11,509 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:12,369 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 16 hr time horizon... +2026-04-29 09:15:12,399 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:14,158 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:14,190 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:14,616 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 10 hr time horizon... +2026-04-29 09:15:14,637 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 4 hr time horizon... +2026-04-29 09:15:14,693 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 17 hr time horizon... +2026-04-29 09:15:14,715 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 14 hr time horizon... +2026-04-29 09:15:14,836 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 16 hr time horizon... +2026-04-29 09:15:14,875 - __main__ - INFO - Processing values: 2018-01-14 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:14,981 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 9 hr time horizon... +2026-04-29 09:15:15,001 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 8 hr time horizon... +2026-04-29 09:15:15,224 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 12 hr time horizon... +2026-04-29 09:15:15,246 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:15,866 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 13 hr time horizon... +2026-04-29 09:15:15,887 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:19,159 - __main__ - INFO - Finished processing 2018-01-03 06:00:00 17 hr time horizon... +2026-04-29 09:15:19,180 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 15 hr time horizon... +2026-04-29 09:15:19,226 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:19,253 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:20,093 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 4 hr time horizon... +2026-04-29 09:15:20,114 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:21,673 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 5 hr time horizon... +2026-04-29 09:15:21,697 - __main__ - INFO - Processing values: 2018-01-02 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:24,940 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:24,958 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:25,203 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 15 hr time horizon... +2026-04-29 09:15:25,231 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:25,653 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 7 hr time horizon... +2026-04-29 09:15:25,676 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:26,644 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 13 hr time horizon... +2026-04-29 09:15:26,678 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:27,537 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 18 hr time horizon... +2026-04-29 09:15:27,564 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:27,982 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:28,006 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:28,496 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:28,522 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:29,279 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:29,299 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 5 hr time horizon... +2026-04-29 09:15:29,338 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:29,359 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:29,752 - __main__ - INFO - Finished processing 2018-01-14 09:00:00 13 hr time horizon... +2026-04-29 09:15:29,769 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 17 hr time horizon... +2026-04-29 09:15:29,792 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 7 hr time horizon... +2026-04-29 09:15:29,809 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 4 hr time horizon... +2026-04-29 09:15:29,957 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:29,980 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:30,915 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 1 hr time horizon... +2026-04-29 09:15:30,936 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:31,180 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 13 hr time horizon... +2026-04-29 09:15:31,202 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:33,039 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 18 hr time horizon... +2026-04-29 09:15:33,059 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:33,795 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 14 hr time horizon... +2026-04-29 09:15:33,817 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:35,058 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 15 hr time horizon... +2026-04-29 09:15:35,081 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:36,104 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 10 hr time horizon... +2026-04-29 09:15:36,125 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:37,590 - __main__ - INFO - Finished processing 2018-01-02 12:00:00 11 hr time horizon... +2026-04-29 09:15:37,612 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:41,464 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 6 hr time horizon... +2026-04-29 09:15:41,487 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:42,762 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 5 hr time horizon... +2026-04-29 09:15:42,784 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,015 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 2 hr time horizon... +2026-04-29 09:15:44,036 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,374 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:15:44,392 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,612 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,634 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,886 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:44,905 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:47,064 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 17 hr time horizon... +2026-04-29 09:15:47,097 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:47,253 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:47,285 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:47,767 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 5 hr time horizon... +2026-04-29 09:15:47,786 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:47,985 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 4 hr time horizon... +2026-04-29 09:15:48,019 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:48,114 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 10 hr time horizon... +2026-04-29 09:15:48,135 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 18 hr time horizon... +2026-04-29 09:15:48,138 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:48,163 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:48,596 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 4 hr time horizon... +2026-04-29 09:15:48,616 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:49,233 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 7 hr time horizon... +2026-04-29 09:15:49,264 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:49,866 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 13 hr time horizon... +2026-04-29 09:15:49,886 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 6 hr time horizon... +2026-04-29 09:15:49,976 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:50,002 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:50,317 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:50,350 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:50,982 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 5 hr time horizon... +2026-04-29 09:15:51,002 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:51,514 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 2 hr time horizon... +2026-04-29 09:15:51,532 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:53,178 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 7 hr time horizon... +2026-04-29 09:15:53,202 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:55,426 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 10 hr time horizon... +2026-04-29 09:15:55,445 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:58,320 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 9 hr time horizon... +2026-04-29 09:15:58,339 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:15:58,919 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 9 hr time horizon... +2026-04-29 09:15:58,939 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:01,469 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 10 hr time horizon... +2026-04-29 09:16:01,491 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:16:01,515 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:01,541 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:01,936 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 18 hr time horizon... +2026-04-29 09:16:01,956 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:02,565 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 18 hr time horizon... +2026-04-29 09:16:02,588 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:02,653 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 7 hr time horizon... +2026-04-29 09:16:02,677 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:02,788 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 9 hr time horizon... +2026-04-29 09:16:02,808 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:02,854 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 18 hr time horizon... +2026-04-29 09:16:02,875 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 7 hr time horizon... +2026-04-29 09:16:02,910 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 16 hr time horizon... +2026-04-29 09:16:02,930 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:03,038 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 9 hr time horizon... +2026-04-29 09:16:03,064 - __main__ - INFO - Processing values: 2018-01-26 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:04,141 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:04,164 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:05,011 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 2 hr time horizon... +2026-04-29 09:16:05,030 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 18 hr time horizon... +2026-04-29 09:16:05,110 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 18 hr time horizon... +2026-04-29 09:16:05,135 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:05,984 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 6 hr time horizon... +2026-04-29 09:16:06,009 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:06,150 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 9 hr time horizon... +2026-04-29 09:16:06,175 - __main__ - INFO - Processing values: 2018-01-28 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:08,181 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 3 hr time horizon... +2026-04-29 09:16:08,205 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 1 hr time horizon... +2026-04-29 09:16:08,260 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 10 hr time horizon... +2026-04-29 09:16:08,283 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:08,724 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 3 hr time horizon... +2026-04-29 09:16:08,748 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:11,381 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 13 hr time horizon... +2026-04-29 09:16:11,406 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:12,647 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 2 hr time horizon... +2026-04-29 09:16:12,668 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:13,777 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 14 hr time horizon... +2026-04-29 09:16:13,800 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:16,484 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 2 hr time horizon... +2026-04-29 09:16:16,502 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:17,044 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 11 hr time horizon... +2026-04-29 09:16:17,068 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:17,297 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 10 hr time horizon... +2026-04-29 09:16:17,328 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:17,526 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 17 hr time horizon... +2026-04-29 09:16:17,547 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:17,829 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 7 hr time horizon... +2026-04-29 09:16:17,850 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:18,721 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 16 hr time horizon... +2026-04-29 09:16:18,743 - __main__ - INFO - Processing values: 2018-01-02 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:18,767 - __main__ - INFO - Finished processing 2018-01-26 16:00:00 17 hr time horizon... +2026-04-29 09:16:18,792 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:19,714 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 10 hr time horizon... +2026-04-29 09:16:19,745 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:19,787 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 3 hr time horizon... +2026-04-29 09:16:19,812 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:20,856 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 15 hr time horizon... +2026-04-29 09:16:20,878 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:21,304 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 14 hr time horizon... +2026-04-29 09:16:21,327 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:21,462 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 18 hr time horizon... +2026-04-29 09:16:21,488 - __main__ - INFO - Processing values: 2018-01-04 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:22,454 - __main__ - INFO - Finished processing 2018-01-28 02:00:00 12 hr time horizon... +2026-04-29 09:16:22,477 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:23,079 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:23,101 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 8 hr time horizon... +2026-04-29 09:16:23,262 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:23,286 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:24,440 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 3 hr time horizon... +2026-04-29 09:16:24,459 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 5 hr time horizon... +2026-04-29 09:16:24,534 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 4 hr time horizon... +2026-04-29 09:16:24,556 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:27,941 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 11 hr time horizon... +2026-04-29 09:16:27,964 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:29,208 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 18 hr time horizon... +2026-04-29 09:16:29,242 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:30,834 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:30,857 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:31,962 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:31,986 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:32,992 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:33,014 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:33,704 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 13 hr time horizon... +2026-04-29 09:16:33,727 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,063 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 13 hr time horizon... +2026-04-29 09:16:34,090 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,133 - __main__ - INFO - Finished processing 2018-01-02 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,156 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,400 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 11 hr time horizon... +2026-04-29 09:16:34,421 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,615 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:34,641 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:35,521 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 7 hr time horizon... +2026-04-29 09:16:35,541 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:36,952 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 12 hr time horizon... +2026-04-29 09:16:36,978 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:37,044 - __main__ - INFO - Finished processing 2018-01-04 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:37,073 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:37,114 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 6 hr time horizon... +2026-04-29 09:16:37,136 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:37,744 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 18 hr time horizon... +2026-04-29 09:16:37,765 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:39,025 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 12 hr time horizon... +2026-04-29 09:16:39,047 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 8 hr time horizon... +2026-04-29 09:16:39,221 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 18 hr time horizon... +2026-04-29 09:16:39,250 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:39,997 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 5 hr time horizon... +2026-04-29 09:16:40,018 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:41,954 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 7 hr time horizon... +2026-04-29 09:16:41,979 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:42,879 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 8 hr time horizon... +2026-04-29 09:16:42,908 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:44,264 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 17 hr time horizon... +2026-04-29 09:16:44,286 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:44,954 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:44,980 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:48,039 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:48,074 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:48,165 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 2 hr time horizon... +2026-04-29 09:16:48,174 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 1 hr time horizon... +2026-04-29 09:16:48,189 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 2 hr time horizon... +2026-04-29 09:16:48,194 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:49,511 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 4 hr time horizon... +2026-04-29 09:16:49,531 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:49,934 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 10 hr time horizon... +2026-04-29 09:16:49,955 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 4 hr time horizon... +2026-04-29 09:16:49,973 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 15 hr time horizon... +2026-04-29 09:16:50,003 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:50,909 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 5 hr time horizon... +2026-04-29 09:16:50,935 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:51,932 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:51,957 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:52,742 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:52,770 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:52,991 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 7 hr time horizon... +2026-04-29 09:16:53,021 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:53,140 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 15 hr time horizon... +2026-04-29 09:16:53,163 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:54,068 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 18 hr time horizon... +2026-04-29 09:16:54,091 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 17 hr time horizon... +2026-04-29 09:16:54,118 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 15 hr time horizon... +2026-04-29 09:16:54,139 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:55,400 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 8 hr time horizon... +2026-04-29 09:16:55,426 - __main__ - INFO - Processing values: 2018-01-03 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:55,744 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 15 hr time horizon... +2026-04-29 09:16:55,766 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:57,860 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 1 hr time horizon... +2026-04-29 09:16:57,882 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:58,308 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 5 hr time horizon... +2026-04-29 09:16:58,328 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:59,187 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:16:59,208 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:00,758 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 11 hr time horizon... +2026-04-29 09:17:00,780 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:01,298 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 6 hr time horizon... +2026-04-29 09:17:01,328 - __main__ - INFO - Processing values: 2018-01-27 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:04,320 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 8 hr time horizon... +2026-04-29 09:17:04,345 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:04,597 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 2 hr time horizon... +2026-04-29 09:17:04,617 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:04,628 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 13 hr time horizon... +2026-04-29 09:17:04,663 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:05,522 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 12 hr time horizon... +2026-04-29 09:17:05,544 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:05,855 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:05,881 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:06,089 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 12 hr time horizon... +2026-04-29 09:17:06,114 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:06,493 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 17 hr time horizon... +2026-04-29 09:17:06,514 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:07,898 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 6 hr time horizon... +2026-04-29 09:17:07,920 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:08,529 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 8 hr time horizon... +2026-04-29 09:17:08,559 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:08,656 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 13 hr time horizon... +2026-04-29 09:17:08,679 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:09,723 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:09,747 - __main__ - INFO - Processing values: 2018-01-16 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:09,872 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 7 hr time horizon... +2026-04-29 09:17:09,891 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:10,354 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 12 hr time horizon... +2026-04-29 09:17:10,378 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:11,761 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 7 hr time horizon... +2026-04-29 09:17:11,783 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:12,841 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 5 hr time horizon... +2026-04-29 09:17:12,860 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:13,832 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:13,854 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:14,250 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 15 hr time horizon... +2026-04-29 09:17:14,272 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:14,824 - __main__ - INFO - Finished processing 2018-01-03 17:00:00 17 hr time horizon... +2026-04-29 09:17:14,844 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:16,186 - __main__ - INFO - Finished processing 2018-01-27 20:00:00 6 hr time horizon... +2026-04-29 09:17:16,211 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:19,053 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 6 hr time horizon... +2026-04-29 09:17:19,073 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:19,152 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 9 hr time horizon... +2026-04-29 09:17:19,174 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:19,890 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 3 hr time horizon... +2026-04-29 09:17:19,911 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:20,609 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:20,633 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:21,175 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 13 hr time horizon... +2026-04-29 09:17:21,200 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 12 hr time horizon... +2026-04-29 09:17:21,247 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 6 hr time horizon... +2026-04-29 09:17:21,272 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:21,464 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 16 hr time horizon... +2026-04-29 09:17:21,488 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:23,002 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 4 hr time horizon... +2026-04-29 09:17:23,033 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:23,571 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 4 hr time horizon... +2026-04-29 09:17:23,597 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:24,794 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 9 hr time horizon... +2026-04-29 09:17:24,817 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:25,215 - __main__ - INFO - Finished processing 2018-01-16 11:00:00 17 hr time horizon... +2026-04-29 09:17:25,237 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:25,506 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 18 hr time horizon... +2026-04-29 09:17:25,527 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:25,768 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 13 hr time horizon... +2026-04-29 09:17:25,790 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 10 hr time horizon... +2026-04-29 09:17:25,806 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 15 hr time horizon... +2026-04-29 09:17:25,828 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:27,860 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 7 hr time horizon... +2026-04-29 09:17:27,885 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:29,740 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 9 hr time horizon... +2026-04-29 09:17:29,767 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 15 hr time horizon... +2026-04-29 09:17:29,925 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 6 hr time horizon... +2026-04-29 09:17:29,950 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:30,961 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 1 hr time horizon... +2026-04-29 09:17:30,981 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:33,312 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 14 hr time horizon... +2026-04-29 09:17:33,337 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:33,410 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 2 hr time horizon... +2026-04-29 09:17:33,437 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:35,264 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 17 hr time horizon... +2026-04-29 09:17:35,299 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:36,079 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:36,110 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:36,741 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 17 hr time horizon... +2026-04-29 09:17:36,764 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:36,861 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 13 hr time horizon... +2026-04-29 09:17:36,882 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 16 hr time horizon... +2026-04-29 09:17:36,901 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 13 hr time horizon... +2026-04-29 09:17:36,931 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:36,977 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 8 hr time horizon... +2026-04-29 09:17:36,998 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:37,250 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 12 hr time horizon... +2026-04-29 09:17:37,270 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:38,924 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 1 hr time horizon... +2026-04-29 09:17:38,946 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:39,028 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 11 hr time horizon... +2026-04-29 09:17:39,053 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:41,231 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 12 hr time horizon... +2026-04-29 09:17:41,254 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 15 hr time horizon... +2026-04-29 09:17:41,357 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 10 hr time horizon... +2026-04-29 09:17:41,382 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 5 hr time horizon... +2026-04-29 09:17:41,495 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 16 hr time horizon... +2026-04-29 09:17:41,520 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:41,730 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 14 hr time horizon... +2026-04-29 09:17:41,752 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:44,043 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 8 hr time horizon... +2026-04-29 09:17:44,066 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:46,012 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 10 hr time horizon... +2026-04-29 09:17:46,035 - __main__ - INFO - Processing values: 2018-01-18 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:46,994 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 17 hr time horizon... +2026-04-29 09:17:47,015 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:47,079 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:47,103 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:48,363 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 15 hr time horizon... +2026-04-29 09:17:48,388 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:49,252 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 7 hr time horizon... +2026-04-29 09:17:49,272 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:49,729 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 11 hr time horizon... +2026-04-29 09:17:49,751 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:50,897 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:50,925 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:51,841 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 9 hr time horizon... +2026-04-29 09:17:51,870 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:52,404 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 9 hr time horizon... +2026-04-29 09:17:52,425 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:53,029 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 16 hr time horizon... +2026-04-29 09:17:53,052 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:53,303 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:17:53,335 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:53,381 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 13 hr time horizon... +2026-04-29 09:17:53,406 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:53,568 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 8 hr time horizon... +2026-04-29 09:17:53,591 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:54,291 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 1 hr time horizon... +2026-04-29 09:17:54,313 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 14 hr time horizon... +2026-04-29 09:17:54,452 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 18 hr time horizon... +2026-04-29 09:17:54,474 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:57,389 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 5 hr time horizon... +2026-04-29 09:17:57,410 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:57,863 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 14 hr time horizon... +2026-04-29 09:17:57,885 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 15 hr time horizon... +2026-04-29 09:17:57,947 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 13 hr time horizon... +2026-04-29 09:17:57,971 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:59,622 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:17:59,645 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:00,756 - __main__ - INFO - Finished processing 2018-01-18 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:00,777 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:01,584 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:01,610 - __main__ - INFO - Processing values: 2018-01-28 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:02,370 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 7 hr time horizon... +2026-04-29 09:18:02,393 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:02,525 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 14 hr time horizon... +2026-04-29 09:18:02,553 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:03,340 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 6 hr time horizon... +2026-04-29 09:18:03,360 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:04,474 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 3 hr time horizon... +2026-04-29 09:18:04,493 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:05,202 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 7 hr time horizon... +2026-04-29 09:18:05,225 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:06,919 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 17 hr time horizon... +2026-04-29 09:18:06,943 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:19,522 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 6 hr time horizon... +2026-04-29 09:18:19,538 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:29,392 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 3 hr time horizon... +2026-04-29 09:18:29,408 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:32,133 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 11 hr time horizon... +2026-04-29 09:18:32,150 - __main__ - INFO - Processing values: 2018-01-29 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:34,390 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 13 hr time horizon... +2026-04-29 09:18:34,409 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:36,275 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 12 hr time horizon... +2026-04-29 09:18:36,292 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:46,010 - __main__ - INFO - Finished processing 2018-01-29 06:00:00 12 hr time horizon... +2026-04-29 09:18:46,030 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:47,136 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 17 hr time horizon... +2026-04-29 09:18:47,154 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:48,591 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 17 hr time horizon... +2026-04-29 09:18:48,609 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 18 hr time horizon... +2026-04-29 09:18:48,788 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 6 hr time horizon... +2026-04-29 09:18:48,805 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:18:59,358 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 11 hr time horizon... +2026-04-29 09:18:59,364 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 5 hr time horizon... +2026-04-29 09:18:59,369 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 5 hr time horizon... +2026-04-29 09:18:59,382 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 14 hr time horizon... +2026-04-29 09:18:59,392 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 7 hr time horizon... +2026-04-29 09:18:59,392 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 15 hr time horizon... +2026-04-29 09:18:59,865 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 13 hr time horizon... +2026-04-29 09:18:59,882 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:03,271 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 18 hr time horizon... +2026-04-29 09:19:03,290 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 4 hr time horizon... +2026-04-29 09:19:03,620 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 10 hr time horizon... +2026-04-29 09:19:03,640 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:11,717 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 7 hr time horizon... +2026-04-29 09:19:11,735 - __main__ - INFO - Processing values: 2018-01-01 21:00:00 18 hr time horizon... +2026-04-29 09:19:11,806 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 15 hr time horizon... +2026-04-29 09:19:11,824 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:12,425 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 14 hr time horizon... +2026-04-29 09:19:12,442 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:15,246 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 9 hr time horizon... +2026-04-29 09:19:15,266 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:15,412 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 18 hr time horizon... +2026-04-29 09:19:15,430 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:15,715 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:15,736 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:16,228 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 12 hr time horizon... +2026-04-29 09:19:16,246 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:16,731 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 14 hr time horizon... +2026-04-29 09:19:16,751 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:18,112 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 14 hr time horizon... +2026-04-29 09:19:18,130 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:18,438 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 17 hr time horizon... +2026-04-29 09:19:18,457 - __main__ - INFO - Processing values: 2018-01-27 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:18,656 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 11 hr time horizon... +2026-04-29 09:19:18,679 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:19,876 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 15 hr time horizon... +2026-04-29 09:19:19,898 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:24,235 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 3 hr time horizon... +2026-04-29 09:19:24,255 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:25,343 - __main__ - INFO - Finished processing 2018-01-01 21:00:00 18 hr time horizon... +2026-04-29 09:19:25,367 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:25,921 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 16 hr time horizon... +2026-04-29 09:19:25,941 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:28,231 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 10 hr time horizon... +2026-04-29 09:19:28,250 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 4 hr time horizon... +2026-04-29 09:19:28,260 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:28,281 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:29,619 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 15 hr time horizon... +2026-04-29 09:19:29,639 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 5 hr time horizon... +2026-04-29 09:19:29,663 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:29,684 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:30,070 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 16 hr time horizon... +2026-04-29 09:19:30,090 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:30,334 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 7 hr time horizon... +2026-04-29 09:19:30,351 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:31,833 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 14 hr time horizon... +2026-04-29 09:19:31,858 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:32,291 - __main__ - INFO - Finished processing 2018-01-27 20:00:00 18 hr time horizon... +2026-04-29 09:19:32,316 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:32,426 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 11 hr time horizon... +2026-04-29 09:19:32,446 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:33,256 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 8 hr time horizon... +2026-04-29 09:19:33,278 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 7 hr time horizon... +2026-04-29 09:19:33,798 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 13 hr time horizon... +2026-04-29 09:19:33,823 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:37,746 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:37,767 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:38,994 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:39,015 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:40,326 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 6 hr time horizon... +2026-04-29 09:19:40,346 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:41,569 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 12 hr time horizon... +2026-04-29 09:19:41,591 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:42,250 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 11 hr time horizon... +2026-04-29 09:19:42,280 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:42,508 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 4 hr time horizon... +2026-04-29 09:19:42,533 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:43,316 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:43,338 - __main__ - INFO - Processing values: 2018-01-11 12:00:00 4 hr time horizon... +2026-04-29 09:19:43,547 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 5 hr time horizon... +2026-04-29 09:19:43,578 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:43,643 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 16 hr time horizon... +2026-04-29 09:19:43,668 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:43,793 - __main__ - INFO - Finished processing 2018-01-14 21:00:00 9 hr time horizon... +2026-04-29 09:19:43,815 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 4 hr time horizon... +2026-04-29 09:19:43,868 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 4 hr time horizon... +2026-04-29 09:19:43,887 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:45,712 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 10 hr time horizon... +2026-04-29 09:19:45,733 - __main__ - INFO - Processing values: 2018-01-22 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:45,984 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 14 hr time horizon... +2026-04-29 09:19:46,007 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:47,268 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 7 hr time horizon... +2026-04-29 09:19:47,294 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 14 hr time horizon... +2026-04-29 09:19:47,329 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 11 hr time horizon... +2026-04-29 09:19:47,349 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 2 hr time horizon... +2026-04-29 09:19:47,842 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 1 hr time horizon... +2026-04-29 09:19:47,864 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:52,469 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 10 hr time horizon... +2026-04-29 09:19:52,491 - __main__ - INFO - Processing values: 2018-01-16 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:54,464 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 12 hr time horizon... +2026-04-29 09:19:54,486 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:55,105 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:55,130 - __main__ - INFO - Processing values: 2018-01-21 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:55,434 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 8 hr time horizon... +2026-04-29 09:19:55,453 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:55,817 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 5 hr time horizon... +2026-04-29 09:19:55,843 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 10 hr time horizon... +2026-04-29 09:19:55,901 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:55,926 - __main__ - INFO - Processing values: 2018-01-10 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:56,420 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 9 hr time horizon... +2026-04-29 09:19:56,443 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:57,301 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 13 hr time horizon... +2026-04-29 09:19:57,322 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:57,506 - __main__ - INFO - Finished processing 2018-01-11 12:00:00 4 hr time horizon... +2026-04-29 09:19:57,531 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:58,114 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 3 hr time horizon... +2026-04-29 09:19:58,136 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:58,810 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:58,834 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:19:59,045 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 4 hr time horizon... +2026-04-29 09:19:59,067 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:00,424 - __main__ - INFO - Finished processing 2018-01-22 22:00:00 16 hr time horizon... +2026-04-29 09:20:00,449 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:00,675 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 14 hr time horizon... +2026-04-29 09:20:00,699 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:01,546 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 14 hr time horizon... +2026-04-29 09:20:01,570 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:02,040 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 10 hr time horizon... +2026-04-29 09:20:02,062 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 5 hr time horizon... +2026-04-29 09:20:02,163 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 2 hr time horizon... +2026-04-29 09:20:02,185 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:02,921 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 1 hr time horizon... +2026-04-29 09:20:02,941 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:06,721 - __main__ - INFO - Finished processing 2018-01-16 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:06,742 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:09,744 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:09,752 - __main__ - INFO - Finished processing 2018-01-21 10:00:00 11 hr time horizon... +2026-04-29 09:20:09,769 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 10 hr time horizon... +2026-04-29 09:20:09,776 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:09,913 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 5 hr time horizon... +2026-04-29 09:20:09,938 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:10,328 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:10,350 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:10,469 - __main__ - INFO - Finished processing 2018-01-10 23:00:00 1 hr time horizon... +2026-04-29 09:20:10,491 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:11,243 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 12 hr time horizon... +2026-04-29 09:20:11,266 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:11,910 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:11,935 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:13,345 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 5 hr time horizon... +2026-04-29 09:20:13,347 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 2 hr time horizon... +2026-04-29 09:20:13,373 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 12 hr time horizon... +2026-04-29 09:20:13,374 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:13,461 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 14 hr time horizon... +2026-04-29 09:20:13,484 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:14,547 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:14,568 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:15,629 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:15,652 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 14 hr time horizon... +2026-04-29 09:20:15,652 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 3 hr time horizon... +2026-04-29 09:20:15,687 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:16,762 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:16,787 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 12 hr time horizon... +2026-04-29 09:20:16,862 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 18 hr time horizon... +2026-04-29 09:20:16,883 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 7 hr time horizon... +2026-04-29 09:20:17,003 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 5 hr time horizon... +2026-04-29 09:20:17,033 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 16 hr time horizon... +2026-04-29 09:20:17,376 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 7 hr time horizon... +2026-04-29 09:20:17,400 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:23,472 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:23,501 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:23,832 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 10 hr time horizon... +2026-04-29 09:20:23,858 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:24,328 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:24,357 - __main__ - INFO - Processing values: 2018-01-19 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:25,361 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 16 hr time horizon... +2026-04-29 09:20:25,386 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:25,461 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 7 hr time horizon... +2026-04-29 09:20:25,485 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:25,668 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 7 hr time horizon... +2026-04-29 09:20:25,693 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:26,929 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 18 hr time horizon... +2026-04-29 09:20:26,950 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:27,249 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:27,279 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:27,916 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 15 hr time horizon... +2026-04-29 09:20:27,935 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:28,155 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 12 hr time horizon... +2026-04-29 09:20:28,180 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:28,818 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:28,846 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:30,166 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:30,190 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:30,388 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 11 hr time horizon... +2026-04-29 09:20:30,413 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:31,888 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 8 hr time horizon... +2026-04-29 09:20:31,916 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 5 hr time horizon... +2026-04-29 09:20:31,982 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 7 hr time horizon... +2026-04-29 09:20:32,005 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:32,482 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 4 hr time horizon... +2026-04-29 09:20:32,505 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:35,215 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 16 hr time horizon... +2026-04-29 09:20:35,238 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:36,847 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 12 hr time horizon... +2026-04-29 09:20:36,869 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:37,874 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:37,900 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 5 hr time horizon... +2026-04-29 09:20:37,923 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 11 hr time horizon... +2026-04-29 09:20:37,943 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:39,150 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 6 hr time horizon... +2026-04-29 09:20:39,174 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:39,264 - __main__ - INFO - Finished processing 2018-01-19 05:00:00 5 hr time horizon... +2026-04-29 09:20:39,286 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:39,749 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 1 hr time horizon... +2026-04-29 09:20:39,765 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:40,836 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 5 hr time horizon... +2026-04-29 09:20:40,858 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:41,027 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 18 hr time horizon... +2026-04-29 09:20:41,049 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:42,896 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 3 hr time horizon... +2026-04-29 09:20:42,921 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:43,808 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 11 hr time horizon... +2026-04-29 09:20:43,841 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:43,887 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 12 hr time horizon... +2026-04-29 09:20:43,911 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:44,708 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 7 hr time horizon... +2026-04-29 09:20:44,728 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:45,167 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:45,186 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:45,773 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 5 hr time horizon... +2026-04-29 09:20:45,794 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 13 hr time horizon... +2026-04-29 09:20:45,901 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 16 hr time horizon... +2026-04-29 09:20:45,927 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:46,135 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 4 hr time horizon... +2026-04-29 09:20:46,154 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:46,669 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 5 hr time horizon... +2026-04-29 09:20:46,691 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:48,510 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 2 hr time horizon... +2026-04-29 09:20:48,528 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:51,768 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 7 hr time horizon... +2026-04-29 09:20:51,792 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:51,930 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:51,960 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:52,966 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 10 hr time horizon... +2026-04-29 09:20:52,987 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:54,159 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 15 hr time horizon... +2026-04-29 09:20:54,184 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 8 hr time horizon... +2026-04-29 09:20:54,254 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:54,274 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:54,400 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 10 hr time horizon... +2026-04-29 09:20:54,420 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:54,948 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 3 hr time horizon... +2026-04-29 09:20:54,968 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:55,215 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 5 hr time horizon... +2026-04-29 09:20:55,237 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:57,292 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 12 hr time horizon... +2026-04-29 09:20:57,318 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:58,978 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 3 hr time horizon... +2026-04-29 09:20:59,003 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:20:59,377 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 1 hr time horizon... +2026-04-29 09:20:59,396 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:00,101 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 10 hr time horizon... +2026-04-29 09:21:00,123 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 12 hr time horizon... +2026-04-29 09:21:00,200 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 5 hr time horizon... +2026-04-29 09:21:00,222 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:00,624 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 2 hr time horizon... +2026-04-29 09:21:00,643 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:02,401 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 13 hr time horizon... +2026-04-29 09:21:02,419 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:03,661 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 15 hr time horizon... +2026-04-29 09:21:03,682 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:05,125 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 9 hr time horizon... +2026-04-29 09:21:05,145 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:07,599 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 11 hr time horizon... +2026-04-29 09:21:07,620 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:07,997 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 6 hr time horizon... +2026-04-29 09:21:08,014 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 10 hr time horizon... +2026-04-29 09:21:08,127 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:08,146 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:08,499 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 15 hr time horizon... +2026-04-29 09:21:08,520 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:10,684 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 2 hr time horizon... +2026-04-29 09:21:10,710 - __main__ - INFO - Processing values: 2018-01-16 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:12,155 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 1 hr time horizon... +2026-04-29 09:21:12,184 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:13,001 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 18 hr time horizon... +2026-04-29 09:21:13,022 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:13,158 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 10 hr time horizon... +2026-04-29 09:21:13,178 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:13,594 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 12 hr time horizon... +2026-04-29 09:21:13,617 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:14,584 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 15 hr time horizon... +2026-04-29 09:21:14,623 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:14,989 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 3 hr time horizon... +2026-04-29 09:21:15,009 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:15,489 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:15,509 - __main__ - INFO - Processing values: 2018-01-02 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:17,548 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 5 hr time horizon... +2026-04-29 09:21:17,567 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 9 hr time horizon... +2026-04-29 09:21:17,597 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 2 hr time horizon... +2026-04-29 09:21:17,616 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 15 hr time horizon... +2026-04-29 09:21:17,707 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 7 hr time horizon... +2026-04-29 09:21:17,729 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:18,421 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:18,443 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:20,675 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 3 hr time horizon... +2026-04-29 09:21:20,697 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:21,203 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 10 hr time horizon... +2026-04-29 09:21:21,224 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:23,433 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 9 hr time horizon... +2026-04-29 09:21:23,458 - __main__ - INFO - Processing values: 2018-01-01 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:23,565 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 9 hr time horizon... +2026-04-29 09:21:23,587 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:24,790 - __main__ - INFO - Finished processing 2018-01-16 11:00:00 4 hr time horizon... +2026-04-29 09:21:24,814 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:25,328 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 10 hr time horizon... +2026-04-29 09:21:25,348 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:27,054 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 8 hr time horizon... +2026-04-29 09:21:27,075 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:28,677 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:28,698 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 18 hr time horizon... +2026-04-29 09:21:28,715 - __main__ - INFO - Finished processing 2018-01-02 12:00:00 5 hr time horizon... +2026-04-29 09:21:28,735 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:29,258 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 12 hr time horizon... +2026-04-29 09:21:29,282 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:30,034 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 16 hr time horizon... +2026-04-29 09:21:30,064 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:30,877 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 15 hr time horizon... +2026-04-29 09:21:30,897 - __main__ - INFO - Processing values: 2018-01-11 15:00:00 15 hr time horizon... +2026-04-29 09:21:30,974 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 9 hr time horizon... +2026-04-29 09:21:30,995 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:31,748 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 15 hr time horizon... +2026-04-29 09:21:31,767 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:34,558 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 7 hr time horizon... +2026-04-29 09:21:34,589 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:35,084 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 5 hr time horizon... +2026-04-29 09:21:35,105 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:36,640 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 14 hr time horizon... +2026-04-29 09:21:36,669 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:37,330 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:37,351 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:37,605 - __main__ - INFO - Finished processing 2018-01-01 21:00:00 11 hr time horizon... +2026-04-29 09:21:37,630 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:37,973 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 13 hr time horizon... +2026-04-29 09:21:37,992 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:38,442 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 7 hr time horizon... +2026-04-29 09:21:38,461 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:39,464 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 16 hr time horizon... +2026-04-29 09:21:39,489 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:39,938 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 5 hr time horizon... +2026-04-29 09:21:39,958 - __main__ - INFO - Processing values: 2018-01-27 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:41,970 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 9 hr time horizon... +2026-04-29 09:21:41,990 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:42,279 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 18 hr time horizon... +2026-04-29 09:21:42,299 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 2 hr time horizon... +2026-04-29 09:21:42,400 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 3 hr time horizon... +2026-04-29 09:21:42,419 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:44,237 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 10 hr time horizon... +2026-04-29 09:21:44,262 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:44,359 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 8 hr time horizon... +2026-04-29 09:21:44,380 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:45,497 - __main__ - INFO - Finished processing 2018-01-11 15:00:00 15 hr time horizon... +2026-04-29 09:21:45,520 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:46,332 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 11 hr time horizon... +2026-04-29 09:21:46,355 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:48,360 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 3 hr time horizon... +2026-04-29 09:21:48,380 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:48,608 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:48,631 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:50,009 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:50,032 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:51,149 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 18 hr time horizon... +2026-04-29 09:21:51,172 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:51,482 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 10 hr time horizon... +2026-04-29 09:21:51,508 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:51,904 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 12 hr time horizon... +2026-04-29 09:21:51,925 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 1 hr time horizon... +2026-04-29 09:21:52,102 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 18 hr time horizon... +2026-04-29 09:21:52,123 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:52,776 - __main__ - INFO - Finished processing 2018-01-27 01:00:00 1 hr time horizon... +2026-04-29 09:21:52,795 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:55,106 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 5 hr time horizon... +2026-04-29 09:21:55,126 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:55,596 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 10 hr time horizon... +2026-04-29 09:21:55,614 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 10 hr time horizon... +2026-04-29 09:21:56,022 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 2 hr time horizon... +2026-04-29 09:21:56,045 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 9 hr time horizon... +2026-04-29 09:21:56,138 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 14 hr time horizon... +2026-04-29 09:21:56,160 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:59,183 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 10 hr time horizon... +2026-04-29 09:21:59,206 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 3 hr time horizon... +2026-04-29 09:21:59,288 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 12 hr time horizon... +2026-04-29 09:21:59,312 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:21:59,666 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 13 hr time horizon... +2026-04-29 09:21:59,691 - __main__ - INFO - Processing values: 2018-01-15 23:00:00 5 hr time horizon... +2026-04-29 09:21:59,765 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 11 hr time horizon... +2026-04-29 09:21:59,785 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:02,167 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 16 hr time horizon... +2026-04-29 09:22:02,191 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:02,667 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 8 hr time horizon... +2026-04-29 09:22:02,693 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:03,444 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 15 hr time horizon... +2026-04-29 09:22:03,468 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:04,924 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 8 hr time horizon... +2026-04-29 09:22:04,946 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:05,140 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 17 hr time horizon... +2026-04-29 09:22:05,163 - __main__ - INFO - Processing values: 2018-01-10 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:05,458 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 1 hr time horizon... +2026-04-29 09:22:05,476 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:22:06,021 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:06,054 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:08,095 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 6 hr time horizon... +2026-04-29 09:22:08,118 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:08,803 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 9 hr time horizon... +2026-04-29 09:22:08,825 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:09,288 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 3 hr time horizon... +2026-04-29 09:22:09,308 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 9 hr time horizon... +2026-04-29 09:22:09,412 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 10 hr time horizon... +2026-04-29 09:22:09,432 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:10,169 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 9 hr time horizon... +2026-04-29 09:22:10,189 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:12,431 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 15 hr time horizon... +2026-04-29 09:22:12,449 - __main__ - INFO - Finished processing 2018-01-15 23:00:00 5 hr time horizon... +2026-04-29 09:22:12,459 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 13 hr time horizon... +2026-04-29 09:22:12,469 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:13,476 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 18 hr time horizon... +2026-04-29 09:22:13,497 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 5 hr time horizon... +2026-04-29 09:22:13,570 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 3 hr time horizon... +2026-04-29 09:22:13,590 - __main__ - INFO - Processing values: 2018-01-08 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:16,461 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 11 hr time horizon... +2026-04-29 09:22:16,484 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:17,932 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 16 hr time horizon... +2026-04-29 09:22:17,956 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:18,572 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 8 hr time horizon... +2026-04-29 09:22:18,593 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 2 hr time horizon... +2026-04-29 09:22:18,607 - __main__ - INFO - Finished processing 2018-01-10 10:00:00 3 hr time horizon... +2026-04-29 09:22:18,627 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:18,775 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 7 hr time horizon... +2026-04-29 09:22:18,799 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:19,141 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 17 hr time horizon... +2026-04-29 09:22:19,161 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:19,604 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 14 hr time horizon... +2026-04-29 09:22:19,624 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:21,395 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 5 hr time horizon... +2026-04-29 09:22:21,414 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:22,211 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 8 hr time horizon... +2026-04-29 09:22:22,231 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:26,033 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 13 hr time horizon... +2026-04-29 09:22:26,057 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:26,525 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 1 hr time horizon... +2026-04-29 09:22:26,550 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:26,647 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 5 hr time horizon... +2026-04-29 09:22:26,665 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:27,154 - __main__ - INFO - Finished processing 2018-01-08 21:00:00 15 hr time horizon... +2026-04-29 09:22:27,185 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:27,574 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 14 hr time horizon... +2026-04-29 09:22:27,594 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:27,784 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 3 hr time horizon... +2026-04-29 09:22:27,803 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:28,491 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 9 hr time horizon... +2026-04-29 09:22:28,515 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:29,640 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:29,662 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:31,672 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:22:31,692 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:32,003 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:32,036 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:32,299 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:32,321 - __main__ - INFO - Processing values: 2018-01-03 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:32,617 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 2 hr time horizon... +2026-04-29 09:22:32,637 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 17 hr time horizon... +2026-04-29 09:22:32,908 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 13 hr time horizon... +2026-04-29 09:22:32,931 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 11 hr time horizon... +2026-04-29 09:22:33,140 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:33,165 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:35,786 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 11 hr time horizon... +2026-04-29 09:22:35,810 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:37,368 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:37,392 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:38,480 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 8 hr time horizon... +2026-04-29 09:22:38,504 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:39,449 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 4 hr time horizon... +2026-04-29 09:22:39,479 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:40,287 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:40,323 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:40,922 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 3 hr time horizon... +2026-04-29 09:22:40,949 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:40,967 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 8 hr time horizon... +2026-04-29 09:22:40,992 - __main__ - INFO - Processing values: 2018-01-03 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:41,153 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 7 hr time horizon... +2026-04-29 09:22:41,172 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:41,351 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 4 hr time horizon... +2026-04-29 09:22:41,373 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:41,881 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 1 hr time horizon... +2026-04-29 09:22:41,899 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:43,763 - __main__ - INFO - Finished processing 2018-01-01 23:00:00 11 hr time horizon... +2026-04-29 09:22:43,782 - __main__ - INFO - Processing values: 2018-01-27 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:46,349 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 3 hr time horizon... +2026-04-29 09:22:46,374 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:46,967 - __main__ - INFO - Finished processing 2018-01-03 06:00:00 12 hr time horizon... +2026-04-29 09:22:46,994 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:47,067 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 17 hr time horizon... +2026-04-29 09:22:47,088 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:47,322 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 15 hr time horizon... +2026-04-29 09:22:47,343 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:47,624 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 11 hr time horizon... +2026-04-29 09:22:47,643 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:48,134 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 8 hr time horizon... +2026-04-29 09:22:48,154 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:49,969 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 14 hr time horizon... +2026-04-29 09:22:49,991 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:51,060 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 16 hr time horizon... +2026-04-29 09:22:51,083 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:52,873 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 15 hr time horizon... +2026-04-29 09:22:52,898 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:55,118 - __main__ - INFO - Finished processing 2018-01-03 10:00:00 18 hr time horizon... +2026-04-29 09:22:55,140 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:55,233 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 13 hr time horizon... +2026-04-29 09:22:55,258 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:55,691 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 7 hr time horizon... +2026-04-29 09:22:55,721 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:55,935 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 16 hr time horizon... +2026-04-29 09:22:55,957 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:56,196 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 11 hr time horizon... +2026-04-29 09:22:56,225 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:56,835 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 17 hr time horizon... +2026-04-29 09:22:56,857 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:57,849 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 2 hr time horizon... +2026-04-29 09:22:57,871 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:58,392 - __main__ - INFO - Finished processing 2018-01-27 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:22:58,417 - __main__ - INFO - Processing values: 2018-01-15 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:01,139 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 12 hr time horizon... +2026-04-29 09:23:01,163 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:01,350 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 9 hr time horizon... +2026-04-29 09:23:01,375 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 2 hr time horizon... +2026-04-29 09:23:01,394 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 2 hr time horizon... +2026-04-29 09:23:01,415 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:01,781 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 16 hr time horizon... +2026-04-29 09:23:01,802 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 17 hr time horizon... +2026-04-29 09:23:01,905 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 7 hr time horizon... +2026-04-29 09:23:01,925 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:04,473 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 18 hr time horizon... +2026-04-29 09:23:04,498 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:05,376 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:05,397 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:05,885 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 10 hr time horizon... +2026-04-29 09:23:05,904 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:07,803 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:07,830 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:08,496 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 1 hr time horizon... +2026-04-29 09:23:08,517 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:09,265 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 13 hr time horizon... +2026-04-29 09:23:09,290 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:09,586 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 1 hr time horizon... +2026-04-29 09:23:09,606 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:09,815 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 4 hr time horizon... +2026-04-29 09:23:09,839 - __main__ - INFO - Processing values: 2018-01-13 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:10,050 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 16 hr time horizon... +2026-04-29 09:23:10,073 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:10,272 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 16 hr time horizon... +2026-04-29 09:23:10,291 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:10,802 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 18 hr time horizon... +2026-04-29 09:23:10,824 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:13,354 - __main__ - INFO - Finished processing 2018-01-15 16:00:00 4 hr time horizon... +2026-04-29 09:23:13,379 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:14,671 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 2 hr time horizon... +2026-04-29 09:23:14,692 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:14,780 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:14,802 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:14,910 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 4 hr time horizon... +2026-04-29 09:23:14,930 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:15,357 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 17 hr time horizon... +2026-04-29 09:23:15,377 - __main__ - INFO - Processing values: 2018-01-09 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:15,526 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:15,549 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:16,828 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 18 hr time horizon... +2026-04-29 09:23:16,850 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:17,675 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:17,698 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:19,914 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 16 hr time horizon... +2026-04-29 09:23:19,943 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:20,453 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 9 hr time horizon... +2026-04-29 09:23:20,482 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:20,686 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:20,714 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:22,988 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 16 hr time horizon... +2026-04-29 09:23:23,010 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:23,055 - __main__ - INFO - Finished processing 2018-01-13 09:00:00 15 hr time horizon... +2026-04-29 09:23:23,071 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:23,124 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 7 hr time horizon... +2026-04-29 09:23:23,145 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:23,558 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 2 hr time horizon... +2026-04-29 09:23:23,581 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:23,651 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 4 hr time horizon... +2026-04-29 09:23:23,670 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:24,205 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 14 hr time horizon... +2026-04-29 09:23:24,223 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:24,664 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 14 hr time horizon... +2026-04-29 09:23:24,687 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:26,936 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 12 hr time horizon... +2026-04-29 09:23:26,969 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:27,934 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 15 hr time horizon... +2026-04-29 09:23:27,959 - __main__ - INFO - Processing values: 2018-01-21 23:00:00 2 hr time horizon... +2026-04-29 09:23:27,988 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 10 hr time horizon... +2026-04-29 09:23:28,008 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:28,818 - __main__ - INFO - Finished processing 2018-01-09 16:00:00 1 hr time horizon... +2026-04-29 09:23:28,840 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:29,354 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 13 hr time horizon... +2026-04-29 09:23:29,382 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:30,958 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 4 hr time horizon... +2026-04-29 09:23:30,980 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:32,374 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:32,400 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:33,781 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 18 hr time horizon... +2026-04-29 09:23:33,806 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:34,033 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 6 hr time horizon... +2026-04-29 09:23:34,053 - __main__ - INFO - Processing values: 2018-01-04 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:34,483 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 6 hr time horizon... +2026-04-29 09:23:34,503 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:34,761 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 4 hr time horizon... +2026-04-29 09:23:34,784 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 7 hr time horizon... +2026-04-29 09:23:35,015 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 17 hr time horizon... +2026-04-29 09:23:35,040 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:37,635 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 3 hr time horizon... +2026-04-29 09:23:37,656 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:38,084 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 6 hr time horizon... +2026-04-29 09:23:38,105 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 16 hr time horizon... +2026-04-29 09:23:38,210 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 10 hr time horizon... +2026-04-29 09:23:38,233 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:40,299 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:40,319 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:40,622 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 11 hr time horizon... +2026-04-29 09:23:40,645 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:41,447 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:41,469 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:42,414 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 5 hr time horizon... +2026-04-29 09:23:42,438 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:43,394 - __main__ - INFO - Finished processing 2018-01-21 23:00:00 2 hr time horizon... +2026-04-29 09:23:43,397 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:43,426 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 4 hr time horizon... +2026-04-29 09:23:43,430 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:44,603 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 8 hr time horizon... +2026-04-29 09:23:44,632 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:44,743 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 7 hr time horizon... +2026-04-29 09:23:44,763 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 2 hr time horizon... +2026-04-29 09:23:44,790 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 18 hr time horizon... +2026-04-29 09:23:44,814 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:47,220 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 17 hr time horizon... +2026-04-29 09:23:47,246 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:48,634 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 12 hr time horizon... +2026-04-29 09:23:48,661 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:49,722 - __main__ - INFO - Finished processing 2018-01-14 21:00:00 17 hr time horizon... +2026-04-29 09:23:49,745 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:49,988 - __main__ - INFO - Finished processing 2018-01-04 01:00:00 11 hr time horizon... +2026-04-29 09:23:50,009 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:50,270 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 3 hr time horizon... +2026-04-29 09:23:50,293 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:51,233 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 7 hr time horizon... +2026-04-29 09:23:51,254 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 13 hr time horizon... +2026-04-29 09:23:51,271 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 18 hr time horizon... +2026-04-29 09:23:51,293 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:53,657 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 8 hr time horizon... +2026-04-29 09:23:53,680 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:54,190 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 16 hr time horizon... +2026-04-29 09:23:54,212 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:55,220 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 1 hr time horizon... +2026-04-29 09:23:55,245 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:56,094 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 9 hr time horizon... +2026-04-29 09:23:56,117 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:56,712 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 3 hr time horizon... +2026-04-29 09:23:56,740 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:56,933 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:56,956 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:57,827 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 4 hr time horizon... +2026-04-29 09:23:57,857 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:59,743 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:23:59,766 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:00,089 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 4 hr time horizon... +2026-04-29 09:24:00,111 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 13 hr time horizon... +2026-04-29 09:24:00,307 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 14 hr time horizon... +2026-04-29 09:24:00,330 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 13 hr time horizon... +2026-04-29 09:24:00,375 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 6 hr time horizon... +2026-04-29 09:24:00,399 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 7 hr time horizon... +2026-04-29 09:24:00,522 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 2 hr time horizon... +2026-04-29 09:24:00,543 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:03,689 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 14 hr time horizon... +2026-04-29 09:24:03,711 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:04,277 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 11 hr time horizon... +2026-04-29 09:24:04,300 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 15 hr time horizon... +2026-04-29 09:24:04,312 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 3 hr time horizon... +2026-04-29 09:24:04,344 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:05,381 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 15 hr time horizon... +2026-04-29 09:24:05,404 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:06,450 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 8 hr time horizon... +2026-04-29 09:24:06,474 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:06,678 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 13 hr time horizon... +2026-04-29 09:24:06,703 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:08,667 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 6 hr time horizon... +2026-04-29 09:24:08,686 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:09,130 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 18 hr time horizon... +2026-04-29 09:24:09,160 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:09,558 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 13 hr time horizon... +2026-04-29 09:24:09,580 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:10,950 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 14 hr time horizon... +2026-04-29 09:24:10,976 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:11,576 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 9 hr time horizon... +2026-04-29 09:24:11,597 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:12,407 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 1 hr time horizon... +2026-04-29 09:24:12,427 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:12,902 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 11 hr time horizon... +2026-04-29 09:24:12,931 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 4 hr time horizon... +2026-04-29 09:24:12,999 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 10 hr time horizon... +2026-04-29 09:24:13,026 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:15,264 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 5 hr time horizon... +2026-04-29 09:24:15,287 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:15,485 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 1 hr time horizon... +2026-04-29 09:24:15,508 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:15,990 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 13 hr time horizon... +2026-04-29 09:24:16,013 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 17 hr time horizon... +2026-04-29 09:24:16,086 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 7 hr time horizon... +2026-04-29 09:24:16,107 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:18,461 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 13 hr time horizon... +2026-04-29 09:24:18,486 - __main__ - INFO - Processing values: 2018-01-01 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:19,634 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 10 hr time horizon... +2026-04-29 09:24:19,664 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:19,780 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:19,805 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:19,971 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 15 hr time horizon... +2026-04-29 09:24:19,992 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:21,401 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 16 hr time horizon... +2026-04-29 09:24:21,424 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 2 hr time horizon... +2026-04-29 09:24:21,646 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 13 hr time horizon... +2026-04-29 09:24:21,676 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:22,612 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 7 hr time horizon... +2026-04-29 09:24:22,639 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:24,659 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:24,685 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:25,323 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:25,348 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:26,666 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 5 hr time horizon... +2026-04-29 09:24:26,688 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:27,189 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 2 hr time horizon... +2026-04-29 09:24:27,209 - __main__ - INFO - Processing values: 2018-01-21 10:00:00 2 hr time horizon... +2026-04-29 09:24:27,241 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 13 hr time horizon... +2026-04-29 09:24:27,261 - __main__ - INFO - Processing values: 2018-01-24 12:00:00 18 hr time horizon... +2026-04-29 09:24:27,430 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:27,454 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:28,850 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 13 hr time horizon... +2026-04-29 09:24:28,872 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:31,070 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 4 hr time horizon... +2026-04-29 09:24:31,094 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 1 hr time horizon... +2026-04-29 09:24:31,195 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 6 hr time horizon... +2026-04-29 09:24:31,218 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:31,274 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 17 hr time horizon... +2026-04-29 09:24:31,297 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 6 hr time horizon... +2026-04-29 09:24:31,305 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 3 hr time horizon... +2026-04-29 09:24:31,328 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:32,612 - __main__ - INFO - Finished processing 2018-01-01 04:00:00 5 hr time horizon... +2026-04-29 09:24:32,638 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:35,120 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 17 hr time horizon... +2026-04-29 09:24:35,143 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:35,242 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 6 hr time horizon... +2026-04-29 09:24:35,264 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 9 hr time horizon... +2026-04-29 09:24:35,418 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:35,451 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:35,503 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 18 hr time horizon... +2026-04-29 09:24:35,527 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:36,393 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 2 hr time horizon... +2026-04-29 09:24:36,414 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:38,107 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 15 hr time horizon... +2026-04-29 09:24:38,130 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:38,288 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 4 hr time horizon... +2026-04-29 09:24:38,311 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:41,321 - __main__ - INFO - Finished processing 2018-01-24 12:00:00 18 hr time horizon... +2026-04-29 09:24:41,351 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:41,492 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 14 hr time horizon... +2026-04-29 09:24:41,519 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 10 hr time horizon... +2026-04-29 09:24:41,605 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:41,627 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:41,780 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 16 hr time horizon... +2026-04-29 09:24:41,800 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:42,763 - __main__ - INFO - Finished processing 2018-01-21 10:00:00 2 hr time horizon... +2026-04-29 09:24:42,787 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:43,013 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 13 hr time horizon... +2026-04-29 09:24:43,035 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:44,572 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 15 hr time horizon... +2026-04-29 09:24:44,595 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:46,288 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:46,308 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:46,734 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 6 hr time horizon... +2026-04-29 09:24:46,759 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:47,257 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 4 hr time horizon... +2026-04-29 09:24:47,278 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 14 hr time horizon... +2026-04-29 09:24:47,309 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 11 hr time horizon... +2026-04-29 09:24:47,335 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:48,427 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 15 hr time horizon... +2026-04-29 09:24:48,448 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:50,640 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 9 hr time horizon... +2026-04-29 09:24:50,664 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 9 hr time horizon... +2026-04-29 09:24:50,714 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 13 hr time horizon... +2026-04-29 09:24:50,740 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:50,964 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:50,998 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 10 hr time horizon... +2026-04-29 09:24:51,036 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 8 hr time horizon... +2026-04-29 09:24:51,059 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:52,356 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:52,378 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:53,346 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 9 hr time horizon... +2026-04-29 09:24:53,367 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:53,924 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 5 hr time horizon... +2026-04-29 09:24:53,947 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:56,340 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:56,364 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:56,519 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 2 hr time horizon... +2026-04-29 09:24:56,539 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:57,516 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 1 hr time horizon... +2026-04-29 09:24:57,538 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:57,673 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:57,698 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:58,092 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 11 hr time horizon... +2026-04-29 09:24:58,117 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:58,596 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 3 hr time horizon... +2026-04-29 09:24:58,619 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:59,755 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:24:59,777 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:01,940 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 2 hr time horizon... +2026-04-29 09:25:01,964 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:02,647 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 14 hr time horizon... +2026-04-29 09:25:02,671 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:03,457 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 17 hr time horizon... +2026-04-29 09:25:03,484 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:03,619 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 11 hr time horizon... +2026-04-29 09:25:03,643 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 1 hr time horizon... +2026-04-29 09:25:03,730 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 7 hr time horizon... +2026-04-29 09:25:03,754 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:05,853 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 5 hr time horizon... +2026-04-29 09:25:05,879 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:06,841 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:06,868 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 4 hr time horizon... +2026-04-29 09:25:06,876 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 9 hr time horizon... +2026-04-29 09:25:06,900 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:07,045 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 10 hr time horizon... +2026-04-29 09:25:07,067 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:07,899 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 18 hr time horizon... +2026-04-29 09:25:07,924 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:08,768 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 9 hr time horizon... +2026-04-29 09:25:08,791 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:09,875 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 8 hr time horizon... +2026-04-29 09:25:09,896 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:10,466 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:10,497 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:11,416 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 8 hr time horizon... +2026-04-29 09:25:11,440 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:12,764 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 14 hr time horizon... +2026-04-29 09:25:12,788 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:13,651 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 2 hr time horizon... +2026-04-29 09:25:13,673 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:13,826 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 18 hr time horizon... +2026-04-29 09:25:13,850 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:14,927 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 12 hr time horizon... +2026-04-29 09:25:14,949 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:15,655 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:15,684 - __main__ - INFO - Processing values: 2018-01-26 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:17,756 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:17,788 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:18,265 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 8 hr time horizon... +2026-04-29 09:25:18,293 - __main__ - INFO - Processing values: 2018-01-25 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:18,440 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 1 hr time horizon... +2026-04-29 09:25:18,443 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 1 hr time horizon... +2026-04-29 09:25:18,460 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 9 hr time horizon... +2026-04-29 09:25:18,463 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:20,230 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:20,252 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 2 hr time horizon... +2026-04-29 09:25:20,345 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 5 hr time horizon... +2026-04-29 09:25:20,370 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:21,424 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:21,443 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:21,937 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 1 hr time horizon... +2026-04-29 09:25:21,955 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:22,131 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 18 hr time horizon... +2026-04-29 09:25:22,153 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:22,937 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 4 hr time horizon... +2026-04-29 09:25:22,962 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:24,166 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 16 hr time horizon... +2026-04-29 09:25:24,191 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:25,767 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 9 hr time horizon... +2026-04-29 09:25:25,788 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 3 hr time horizon... +2026-04-29 09:25:26,050 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 15 hr time horizon... +2026-04-29 09:25:26,069 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:32,297 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 2 hr time horizon... +2026-04-29 09:25:32,312 - __main__ - INFO - Processing values: 2018-01-24 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:33,209 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 15 hr time horizon... +2026-04-29 09:25:33,233 - __main__ - INFO - Processing values: 2018-01-02 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:34,182 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 5 hr time horizon... +2026-04-29 09:25:34,199 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:35,237 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 14 hr time horizon... +2026-04-29 09:25:35,255 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:35,397 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 17 hr time horizon... +2026-04-29 09:25:35,414 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:35,761 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 12 hr time horizon... +2026-04-29 09:25:35,782 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:36,604 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 2 hr time horizon... +2026-04-29 09:25:36,620 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:36,907 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 5 hr time horizon... +2026-04-29 09:25:36,927 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:38,556 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 3 hr time horizon... +2026-04-29 09:25:38,577 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:45,310 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 11 hr time horizon... +2026-04-29 09:25:45,328 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:45,421 - __main__ - INFO - Finished processing 2018-01-24 20:00:00 2 hr time horizon... +2026-04-29 09:25:45,436 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:45,857 - __main__ - INFO - Finished processing 2018-01-02 20:00:00 9 hr time horizon... +2026-04-29 09:25:45,873 - __main__ - INFO - Processing values: 2018-01-02 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:47,370 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 9 hr time horizon... +2026-04-29 09:25:47,392 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:47,609 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 11 hr time horizon... +2026-04-29 09:25:47,628 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:47,780 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 15 hr time horizon... +2026-04-29 09:25:47,800 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:49,450 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 1 hr time horizon... +2026-04-29 09:25:49,468 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:49,557 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 8 hr time horizon... +2026-04-29 09:25:49,564 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 12 hr time horizon... +2026-04-29 09:25:49,581 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 2 hr time horizon... +2026-04-29 09:25:49,592 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 13 hr time horizon... +2026-04-29 09:25:49,763 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 18 hr time horizon... +2026-04-29 09:25:49,787 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:51,616 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 5 hr time horizon... +2026-04-29 09:25:51,637 - __main__ - INFO - Processing values: 2018-01-11 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:56,327 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 9 hr time horizon... +2026-04-29 09:25:56,344 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:57,694 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 2 hr time horizon... +2026-04-29 09:25:57,715 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:58,144 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 14 hr time horizon... +2026-04-29 09:25:58,165 - __main__ - INFO - Processing values: 2018-01-17 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:25:59,986 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 5 hr time horizon... +2026-04-29 09:26:00,004 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:00,480 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 5 hr time horizon... +2026-04-29 09:26:00,502 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:01,554 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 4 hr time horizon... +2026-04-29 09:26:01,572 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:02,371 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:02,392 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 7 hr time horizon... +2026-04-29 09:26:02,441 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 3 hr time horizon... +2026-04-29 09:26:02,462 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:03,926 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:03,948 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:05,427 - __main__ - INFO - Finished processing 2018-01-11 13:00:00 15 hr time horizon... +2026-04-29 09:26:05,447 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:05,974 - __main__ - INFO - Finished processing 2018-01-02 09:00:00 16 hr time horizon... +2026-04-29 09:26:05,992 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:06,464 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 17 hr time horizon... +2026-04-29 09:26:06,484 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:09,102 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:09,126 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:10,736 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 6 hr time horizon... +2026-04-29 09:26:10,765 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:11,177 - __main__ - INFO - Finished processing 2018-01-17 12:00:00 5 hr time horizon... +2026-04-29 09:26:11,196 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:12,237 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 2 hr time horizon... +2026-04-29 09:26:12,256 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:12,630 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 12 hr time horizon... +2026-04-29 09:26:12,649 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:13,408 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 5 hr time horizon... +2026-04-29 09:26:13,427 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:15,315 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 7 hr time horizon... +2026-04-29 09:26:15,338 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:15,991 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:16,023 - __main__ - INFO - Processing values: 2018-01-07 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:16,583 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:16,608 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:18,225 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 15 hr time horizon... +2026-04-29 09:26:18,253 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:18,488 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 12 hr time horizon... +2026-04-29 09:26:18,526 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:18,825 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 2 hr time horizon... +2026-04-29 09:26:18,848 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:19,637 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 8 hr time horizon... +2026-04-29 09:26:19,655 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:22,126 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 12 hr time horizon... +2026-04-29 09:26:22,148 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:22,987 - __main__ - INFO - Finished processing 2018-01-25 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:23,013 - __main__ - INFO - Processing values: 2018-01-21 11:00:00 9 hr time horizon... +2026-04-29 09:26:23,036 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 11 hr time horizon... +2026-04-29 09:26:23,060 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:23,946 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 8 hr time horizon... +2026-04-29 09:26:23,966 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:24,549 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:24,569 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:25,795 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 13 hr time horizon... +2026-04-29 09:26:25,815 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:26,211 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 15 hr time horizon... +2026-04-29 09:26:26,234 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:26,708 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 9 hr time horizon... +2026-04-29 09:26:26,728 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:27,441 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:27,462 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:28,251 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 4 hr time horizon... +2026-04-29 09:26:28,272 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:30,331 - __main__ - INFO - Finished processing 2018-01-07 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:30,358 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:31,673 - __main__ - INFO - Finished processing 2018-01-26 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:31,698 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:32,045 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 6 hr time horizon... +2026-04-29 09:26:32,065 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:32,205 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 6 hr time horizon... +2026-04-29 09:26:32,231 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:32,353 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 4 hr time horizon... +2026-04-29 09:26:32,376 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:32,881 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 15 hr time horizon... +2026-04-29 09:26:32,902 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 3 hr time horizon... +2026-04-29 09:26:33,049 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 13 hr time horizon... +2026-04-29 09:26:33,071 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 15 hr time horizon... +2026-04-29 09:26:33,101 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 17 hr time horizon... +2026-04-29 09:26:33,123 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:36,186 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 17 hr time horizon... +2026-04-29 09:26:36,213 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:36,831 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 16 hr time horizon... +2026-04-29 09:26:36,854 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:37,028 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 5 hr time horizon... +2026-04-29 09:26:37,051 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:37,216 - __main__ - INFO - Finished processing 2018-01-21 11:00:00 9 hr time horizon... +2026-04-29 09:26:37,236 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:38,296 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 12 hr time horizon... +2026-04-29 09:26:38,326 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:38,810 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 14 hr time horizon... +2026-04-29 09:26:38,830 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:40,521 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 1 hr time horizon... +2026-04-29 09:26:40,540 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:40,677 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 7 hr time horizon... +2026-04-29 09:26:40,698 - __main__ - INFO - Processing values: 2018-01-24 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:41,219 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 7 hr time horizon... +2026-04-29 09:26:41,243 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:42,533 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 12 hr time horizon... +2026-04-29 09:26:42,556 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:43,709 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 18 hr time horizon... +2026-04-29 09:26:43,733 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:45,137 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 7 hr time horizon... +2026-04-29 09:26:45,158 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:45,322 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 1 hr time horizon... +2026-04-29 09:26:45,346 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:46,688 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 4 hr time horizon... +2026-04-29 09:26:46,712 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:46,818 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 17 hr time horizon... +2026-04-29 09:26:46,843 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:46,940 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 6 hr time horizon... +2026-04-29 09:26:46,962 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:47,631 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 3 hr time horizon... +2026-04-29 09:26:47,651 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:48,077 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 15 hr time horizon... +2026-04-29 09:26:48,101 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 6 hr time horizon... +2026-04-29 09:26:48,175 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 12 hr time horizon... +2026-04-29 09:26:48,198 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:50,285 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 3 hr time horizon... +2026-04-29 09:26:50,304 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:51,654 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 1 hr time horizon... +2026-04-29 09:26:51,675 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:52,368 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 6 hr time horizon... +2026-04-29 09:26:52,392 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:53,695 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 4 hr time horizon... +2026-04-29 09:26:53,718 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:54,207 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 1 hr time horizon... +2026-04-29 09:26:54,227 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:55,301 - __main__ - INFO - Finished processing 2018-01-24 12:00:00 14 hr time horizon... +2026-04-29 09:26:55,321 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:55,503 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 16 hr time horizon... +2026-04-29 09:26:55,525 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:56,490 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 4 hr time horizon... +2026-04-29 09:26:56,514 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 13 hr time horizon... +2026-04-29 09:26:56,605 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 13 hr time horizon... +2026-04-29 09:26:56,629 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:59,018 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 15 hr time horizon... +2026-04-29 09:26:59,044 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:26:59,903 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:26:59,931 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:00,020 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 5 hr time horizon... +2026-04-29 09:27:00,042 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:00,806 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 6 hr time horizon... +2026-04-29 09:27:00,826 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:01,354 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 1 hr time horizon... +2026-04-29 09:27:01,376 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:02,895 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 10 hr time horizon... +2026-04-29 09:27:02,922 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:02,979 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 6 hr time horizon... +2026-04-29 09:27:03,002 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:03,552 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 13 hr time horizon... +2026-04-29 09:27:03,574 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:04,255 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 8 hr time horizon... +2026-04-29 09:27:04,281 - __main__ - INFO - Processing values: 2018-01-30 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:04,342 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 9 hr time horizon... +2026-04-29 09:27:04,365 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:06,008 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 9 hr time horizon... +2026-04-29 09:27:06,032 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:06,964 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 2 hr time horizon... +2026-04-29 09:27:06,985 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 1 hr time horizon... +2026-04-29 09:27:07,208 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 13 hr time horizon... +2026-04-29 09:27:07,238 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:08,217 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 2 hr time horizon... +2026-04-29 09:27:08,238 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 16 hr time horizon... +2026-04-29 09:27:08,252 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 10 hr time horizon... +2026-04-29 09:27:08,280 - __main__ - INFO - Processing values: 2018-01-25 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:11,184 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 18 hr time horizon... +2026-04-29 09:27:11,205 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:11,747 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 13 hr time horizon... +2026-04-29 09:27:11,767 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:12,051 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 13 hr time horizon... +2026-04-29 09:27:12,076 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:13,624 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 5 hr time horizon... +2026-04-29 09:27:13,645 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:14,218 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 8 hr time horizon... +2026-04-29 09:27:14,237 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:15,126 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:15,150 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:16,569 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 7 hr time horizon... +2026-04-29 09:27:16,578 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 18 hr time horizon... +2026-04-29 09:27:16,595 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:16,605 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 3 hr time horizon... +2026-04-29 09:27:16,652 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 13 hr time horizon... +2026-04-29 09:27:16,673 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 9 hr time horizon... +2026-04-29 09:27:16,720 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 5 hr time horizon... +2026-04-29 09:27:16,741 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:17,934 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 14 hr time horizon... +2026-04-29 09:27:17,954 - __main__ - INFO - Processing values: 2018-01-10 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:18,252 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 6 hr time horizon... +2026-04-29 09:27:18,273 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:19,394 - __main__ - INFO - Finished processing 2018-01-30 05:00:00 6 hr time horizon... +2026-04-29 09:27:19,414 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 13 hr time horizon... +2026-04-29 09:27:19,615 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 10 hr time horizon... +2026-04-29 09:27:19,636 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 4 hr time horizon... +2026-04-29 09:27:19,736 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 4 hr time horizon... +2026-04-29 09:27:19,754 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:22,797 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 1 hr time horizon... +2026-04-29 09:27:22,814 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:28,465 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 5 hr time horizon... +2026-04-29 09:27:28,480 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:32,641 - __main__ - INFO - Finished processing 2018-01-10 10:00:00 16 hr time horizon... +2026-04-29 09:27:32,660 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:32,927 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 16 hr time horizon... +2026-04-29 09:27:32,944 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:33,631 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 4 hr time horizon... +2026-04-29 09:27:33,648 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:35,758 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 6 hr time horizon... +2026-04-29 09:27:35,781 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:39,878 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 3 hr time horizon... +2026-04-29 09:27:39,895 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:41,760 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 12 hr time horizon... +2026-04-29 09:27:41,776 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:42,922 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 15 hr time horizon... +2026-04-29 09:27:42,939 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:43,836 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 2 hr time horizon... +2026-04-29 09:27:43,857 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:45,503 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 17 hr time horizon... +2026-04-29 09:27:45,520 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 11 hr time horizon... +2026-04-29 09:27:45,539 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 8 hr time horizon... +2026-04-29 09:27:45,558 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:46,227 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 13 hr time horizon... +2026-04-29 09:27:46,244 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 4 hr time horizon... +2026-04-29 09:27:46,729 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 11 hr time horizon... +2026-04-29 09:27:46,752 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:50,118 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 8 hr time horizon... +2026-04-29 09:27:50,137 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:53,750 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 12 hr time horizon... +2026-04-29 09:27:53,771 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 4 hr time horizon... +2026-04-29 09:27:53,801 - __main__ - INFO - Finished processing 2018-01-25 05:00:00 10 hr time horizon... +2026-04-29 09:27:53,819 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:54,005 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 3 hr time horizon... +2026-04-29 09:27:54,024 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:54,683 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 18 hr time horizon... +2026-04-29 09:27:54,703 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 6 hr time horizon... +2026-04-29 09:27:54,765 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 9 hr time horizon... +2026-04-29 09:27:54,782 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:54,946 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 13 hr time horizon... +2026-04-29 09:27:54,964 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:57,089 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 2 hr time horizon... +2026-04-29 09:27:57,115 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:58,096 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 2 hr time horizon... +2026-04-29 09:27:58,118 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:58,237 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 9 hr time horizon... +2026-04-29 09:27:58,258 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:58,593 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 18 hr time horizon... +2026-04-29 09:27:58,614 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:59,011 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 9 hr time horizon... +2026-04-29 09:27:59,031 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:27:59,565 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 8 hr time horizon... +2026-04-29 09:27:59,584 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:00,247 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 4 hr time horizon... +2026-04-29 09:28:00,265 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:01,028 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 12 hr time horizon... +2026-04-29 09:28:01,048 - __main__ - INFO - Processing values: 2018-01-07 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:02,191 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 11 hr time horizon... +2026-04-29 09:28:02,211 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:03,439 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 15 hr time horizon... +2026-04-29 09:28:03,461 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:07,086 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:07,116 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:08,267 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 9 hr time horizon... +2026-04-29 09:28:08,288 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 11 hr time horizon... +2026-04-29 09:28:08,311 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 6 hr time horizon... +2026-04-29 09:28:08,333 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:08,428 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 17 hr time horizon... +2026-04-29 09:28:08,453 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:08,560 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 9 hr time horizon... +2026-04-29 09:28:08,583 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:08,922 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 11 hr time horizon... +2026-04-29 09:28:08,942 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:09,205 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 6 hr time horizon... +2026-04-29 09:28:09,225 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:10,112 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 8 hr time horizon... +2026-04-29 09:28:10,135 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:11,730 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 7 hr time horizon... +2026-04-29 09:28:11,754 - __main__ - INFO - Processing values: 2018-01-02 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:11,802 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 15 hr time horizon... +2026-04-29 09:28:11,825 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:12,454 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 13 hr time horizon... +2026-04-29 09:28:12,477 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:13,363 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:13,386 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:13,489 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 3 hr time horizon... +2026-04-29 09:28:13,517 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:14,311 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 7 hr time horizon... +2026-04-29 09:28:14,334 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:14,740 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 14 hr time horizon... +2026-04-29 09:28:14,761 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:15,649 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 4 hr time horizon... +2026-04-29 09:28:15,674 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:15,750 - __main__ - INFO - Finished processing 2018-01-07 13:00:00 11 hr time horizon... +2026-04-29 09:28:15,773 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:16,302 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 14 hr time horizon... +2026-04-29 09:28:16,321 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:18,155 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 14 hr time horizon... +2026-04-29 09:28:18,177 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:21,569 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 15 hr time horizon... +2026-04-29 09:28:21,593 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:21,785 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 11 hr time horizon... +2026-04-29 09:28:21,806 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:22,886 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 15 hr time horizon... +2026-04-29 09:28:22,906 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:23,177 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 13 hr time horizon... +2026-04-29 09:28:23,200 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:23,570 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 13 hr time horizon... +2026-04-29 09:28:23,578 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 12 hr time horizon... +2026-04-29 09:28:23,593 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 7 hr time horizon... +2026-04-29 09:28:23,603 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:23,789 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 6 hr time horizon... +2026-04-29 09:28:23,810 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:24,121 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:24,145 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:26,564 - __main__ - INFO - Finished processing 2018-01-02 12:00:00 14 hr time horizon... +2026-04-29 09:28:26,586 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:27,505 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 7 hr time horizon... +2026-04-29 09:28:27,526 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:28,299 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:28,322 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:28,609 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 5 hr time horizon... +2026-04-29 09:28:28,628 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:28,700 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 10 hr time horizon... +2026-04-29 09:28:28,723 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:28,872 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 8 hr time horizon... +2026-04-29 09:28:28,891 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:29,160 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 13 hr time horizon... +2026-04-29 09:28:29,180 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:30,447 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 15 hr time horizon... +2026-04-29 09:28:30,469 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:30,566 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 18 hr time horizon... +2026-04-29 09:28:30,592 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:32,901 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 15 hr time horizon... +2026-04-29 09:28:32,920 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:36,325 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 3 hr time horizon... +2026-04-29 09:28:36,347 - __main__ - INFO - Processing values: 2018-01-26 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:36,513 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 2 hr time horizon... +2026-04-29 09:28:36,544 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:37,088 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 9 hr time horizon... +2026-04-29 09:28:37,112 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 6 hr time horizon... +2026-04-29 09:28:37,112 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:37,135 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:38,340 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 11 hr time horizon... +2026-04-29 09:28:38,361 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:38,443 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 7 hr time horizon... +2026-04-29 09:28:38,465 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 17 hr time horizon... +2026-04-29 09:28:38,491 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 18 hr time horizon... +2026-04-29 09:28:38,511 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:28:39,596 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:39,623 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:40,592 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 11 hr time horizon... +2026-04-29 09:28:40,620 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:41,611 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:41,634 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:41,878 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 8 hr time horizon... +2026-04-29 09:28:41,897 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:42,365 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 7 hr time horizon... +2026-04-29 09:28:42,393 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:42,480 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 8 hr time horizon... +2026-04-29 09:28:42,502 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:43,439 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 15 hr time horizon... +2026-04-29 09:28:43,472 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:43,807 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 4 hr time horizon... +2026-04-29 09:28:43,841 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:44,332 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 11 hr time horizon... +2026-04-29 09:28:44,352 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:44,809 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 18 hr time horizon... +2026-04-29 09:28:44,828 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:46,300 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 2 hr time horizon... +2026-04-29 09:28:46,315 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:50,000 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 8 hr time horizon... +2026-04-29 09:28:50,024 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 6 hr time horizon... +2026-04-29 09:28:50,089 - __main__ - INFO - Finished processing 2018-01-26 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:50,108 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:51,372 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 1 hr time horizon... +2026-04-29 09:28:51,392 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:52,403 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:52,426 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:52,884 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:52,910 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:53,010 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 18 hr time horizon... +2026-04-29 09:28:53,032 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 2 hr time horizon... +2026-04-29 09:28:53,145 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 18 hr time horizon... +2026-04-29 09:28:53,166 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:53,440 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 8 hr time horizon... +2026-04-29 09:28:53,458 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:54,396 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 18 hr time horizon... +2026-04-29 09:28:54,420 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:55,787 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 1 hr time horizon... +2026-04-29 09:28:55,806 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:55,835 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 8 hr time horizon... +2026-04-29 09:28:55,857 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:56,776 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:56,798 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:57,337 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 9 hr time horizon... +2026-04-29 09:28:57,362 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 18 hr time horizon... +2026-04-29 09:28:57,432 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:57,453 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:58,475 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:58,503 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:59,108 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 6 hr time horizon... +2026-04-29 09:28:59,134 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:59,671 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 2 hr time horizon... +2026-04-29 09:28:59,696 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:28:59,821 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 12 hr time horizon... +2026-04-29 09:28:59,844 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:01,042 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 15 hr time horizon... +2026-04-29 09:29:01,066 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:04,490 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 6 hr time horizon... +2026-04-29 09:29:04,511 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:05,265 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 5 hr time horizon... +2026-04-29 09:29:05,287 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:06,277 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 1 hr time horizon... +2026-04-29 09:29:06,297 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:08,165 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 17 hr time horizon... +2026-04-29 09:29:08,195 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:08,765 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 8 hr time horizon... +2026-04-29 09:29:08,787 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:08,915 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 2 hr time horizon... +2026-04-29 09:29:08,941 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:09,190 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 16 hr time horizon... +2026-04-29 09:29:09,219 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:10,348 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 2 hr time horizon... +2026-04-29 09:29:10,370 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:10,859 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 16 hr time horizon... +2026-04-29 09:29:10,883 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:11,314 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 1 hr time horizon... +2026-04-29 09:29:11,349 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:11,694 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 3 hr time horizon... +2026-04-29 09:29:11,717 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:12,197 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 10 hr time horizon... +2026-04-29 09:29:12,218 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:12,606 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:12,631 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:13,195 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 10 hr time horizon... +2026-04-29 09:29:13,220 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:13,421 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 5 hr time horizon... +2026-04-29 09:29:13,448 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:14,508 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 17 hr time horizon... +2026-04-29 09:29:14,530 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:15,433 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 15 hr time horizon... +2026-04-29 09:29:15,453 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 14 hr time horizon... +2026-04-29 09:29:15,589 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 4 hr time horizon... +2026-04-29 09:29:15,611 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:19,338 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 3 hr time horizon... +2026-04-29 09:29:19,358 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:19,994 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 6 hr time horizon... +2026-04-29 09:29:20,017 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:21,844 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 8 hr time horizon... +2026-04-29 09:29:21,870 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:22,873 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:22,895 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:24,014 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:24,039 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 17 hr time horizon... +2026-04-29 09:29:24,041 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 15 hr time horizon... +2026-04-29 09:29:24,065 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:24,926 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:24,958 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:24,972 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 5 hr time horizon... +2026-04-29 09:29:25,000 - __main__ - INFO - Processing values: 2018-01-20 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:25,463 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 15 hr time horizon... +2026-04-29 09:29:25,483 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:26,074 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 2 hr time horizon... +2026-04-29 09:29:26,099 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 1 hr time horizon... +2026-04-29 09:29:26,135 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:26,157 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:26,379 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 2 hr time horizon... +2026-04-29 09:29:26,397 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:26,945 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 10 hr time horizon... +2026-04-29 09:29:26,962 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:27,529 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 17 hr time horizon... +2026-04-29 09:29:27,555 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:28,090 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:28,117 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:28,811 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 2 hr time horizon... +2026-04-29 09:29:28,834 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:30,050 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 14 hr time horizon... +2026-04-29 09:29:30,072 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 4 hr time horizon... +2026-04-29 09:29:30,253 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 12 hr time horizon... +2026-04-29 09:29:30,277 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:30,938 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 9 hr time horizon... +2026-04-29 09:29:30,957 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:34,027 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 2 hr time horizon... +2026-04-29 09:29:34,047 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:35,082 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 3 hr time horizon... +2026-04-29 09:29:35,102 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:35,560 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 10 hr time horizon... +2026-04-29 09:29:35,582 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:38,278 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 17 hr time horizon... +2026-04-29 09:29:38,305 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:38,651 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 17 hr time horizon... +2026-04-29 09:29:38,672 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:38,853 - __main__ - INFO - Finished processing 2018-01-20 18:00:00 17 hr time horizon... +2026-04-29 09:29:38,878 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:38,987 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:39,014 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:39,103 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 12 hr time horizon... +2026-04-29 09:29:39,133 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:39,727 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:39,754 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:40,328 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:40,356 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:40,951 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:40,975 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:41,229 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 17 hr time horizon... +2026-04-29 09:29:41,256 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:29:42,442 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:42,476 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:42,558 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:42,582 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:43,310 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 18 hr time horizon... +2026-04-29 09:29:43,333 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 15 hr time horizon... +2026-04-29 09:29:43,463 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 17 hr time horizon... +2026-04-29 09:29:43,484 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:45,094 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 16 hr time horizon... +2026-04-29 09:29:45,117 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 16 hr time horizon... +2026-04-29 09:29:45,341 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 4 hr time horizon... +2026-04-29 09:29:45,360 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:46,375 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 12 hr time horizon... +2026-04-29 09:29:46,396 - __main__ - INFO - Processing values: 2018-01-26 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:49,315 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:49,337 - __main__ - INFO - Processing values: 2018-01-25 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:50,759 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 17 hr time horizon... +2026-04-29 09:29:50,780 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 5 hr time horizon... +2026-04-29 09:29:51,057 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 10 hr time horizon... +2026-04-29 09:29:51,089 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:54,230 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 13 hr time horizon... +2026-04-29 09:29:54,260 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:54,544 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:54,572 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:54,726 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 14 hr time horizon... +2026-04-29 09:29:54,749 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:55,181 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:55,205 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:55,321 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 3 hr time horizon... +2026-04-29 09:29:55,343 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:55,816 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 18 hr time horizon... +2026-04-29 09:29:55,838 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 4 hr time horizon... +2026-04-29 09:29:56,091 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 13 hr time horizon... +2026-04-29 09:29:56,122 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:56,225 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 1 hr time horizon... +2026-04-29 09:29:56,244 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:57,593 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 7 hr time horizon... +2026-04-29 09:29:57,614 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:57,889 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:57,916 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:29:59,396 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 15 hr time horizon... +2026-04-29 09:29:59,415 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 15 hr time horizon... +2026-04-29 09:29:59,418 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 16 hr time horizon... +2026-04-29 09:29:59,437 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:00,280 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 16 hr time horizon... +2026-04-29 09:30:00,300 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 18 hr time horizon... +2026-04-29 09:30:00,484 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:00,508 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:01,083 - __main__ - INFO - Finished processing 2018-01-26 15:00:00 18 hr time horizon... +2026-04-29 09:30:01,106 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:03,113 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 2 hr time horizon... +2026-04-29 09:30:03,142 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:05,384 - __main__ - INFO - Finished processing 2018-01-25 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:05,410 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:06,965 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 10 hr time horizon... +2026-04-29 09:30:06,988 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:07,608 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 5 hr time horizon... +2026-04-29 09:30:07,639 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:09,037 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 2 hr time horizon... +2026-04-29 09:30:09,058 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:09,381 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 3 hr time horizon... +2026-04-29 09:30:09,405 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:10,129 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 4 hr time horizon... +2026-04-29 09:30:10,150 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:10,960 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 9 hr time horizon... +2026-04-29 09:30:10,987 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:11,131 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 4 hr time horizon... +2026-04-29 09:30:11,151 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:11,596 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 4 hr time horizon... +2026-04-29 09:30:11,619 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:12,452 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 2 hr time horizon... +2026-04-29 09:30:12,473 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:13,144 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:13,168 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:14,219 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:14,243 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:14,899 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 16 hr time horizon... +2026-04-29 09:30:14,924 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:15,196 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 8 hr time horizon... +2026-04-29 09:30:15,221 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:15,404 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 17 hr time horizon... +2026-04-29 09:30:15,434 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:15,447 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 14 hr time horizon... +2026-04-29 09:30:15,467 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:17,144 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 6 hr time horizon... +2026-04-29 09:30:17,166 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 10 hr time horizon... +2026-04-29 09:30:17,264 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 18 hr time horizon... +2026-04-29 09:30:17,288 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:18,722 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 9 hr time horizon... +2026-04-29 09:30:18,743 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:20,803 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 11 hr time horizon... +2026-04-29 09:30:20,824 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:22,482 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 14 hr time horizon... +2026-04-29 09:30:22,505 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:22,630 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 1 hr time horizon... +2026-04-29 09:30:22,650 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:24,308 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 3 hr time horizon... +2026-04-29 09:30:24,327 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:24,624 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 4 hr time horizon... +2026-04-29 09:30:24,654 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:25,966 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 4 hr time horizon... +2026-04-29 09:30:25,987 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:26,314 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:30:26,339 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:26,472 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 3 hr time horizon... +2026-04-29 09:30:26,492 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:27,796 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:27,820 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:28,228 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 8 hr time horizon... +2026-04-29 09:30:28,253 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:29,320 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 4 hr time horizon... +2026-04-29 09:30:29,345 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:30,075 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 12 hr time horizon... +2026-04-29 09:30:30,106 - __main__ - INFO - Processing values: 2018-01-24 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:30,252 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:30,273 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:31,091 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 16 hr time horizon... +2026-04-29 09:30:31,115 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:32,084 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 17 hr time horizon... +2026-04-29 09:30:32,110 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:32,607 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 6 hr time horizon... +2026-04-29 09:30:32,628 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:33,101 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 10 hr time horizon... +2026-04-29 09:30:33,125 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 14 hr time horizon... +2026-04-29 09:30:33,556 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 18 hr time horizon... +2026-04-29 09:30:33,584 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:33,653 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 2 hr time horizon... +2026-04-29 09:30:33,676 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:36,369 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 4 hr time horizon... +2026-04-29 09:30:36,397 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:37,296 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 2 hr time horizon... +2026-04-29 09:30:37,315 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:38,143 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 16 hr time horizon... +2026-04-29 09:30:38,169 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:39,209 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 9 hr time horizon... +2026-04-29 09:30:39,233 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:39,867 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:39,895 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:41,288 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 13 hr time horizon... +2026-04-29 09:30:41,311 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:41,493 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 10 hr time horizon... +2026-04-29 09:30:41,517 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:42,220 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 17 hr time horizon... +2026-04-29 09:30:42,248 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:42,811 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 2 hr time horizon... +2026-04-29 09:30:42,832 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:43,009 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 12 hr time horizon... +2026-04-29 09:30:43,033 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:44,467 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 14 hr time horizon... +2026-04-29 09:30:44,488 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 5 hr time horizon... +2026-04-29 09:30:44,494 - __main__ - INFO - Finished processing 2018-01-24 16:00:00 10 hr time horizon... +2026-04-29 09:30:44,520 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:45,717 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 17 hr time horizon... +2026-04-29 09:30:45,745 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:47,092 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:47,115 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:47,969 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 1 hr time horizon... +2026-04-29 09:30:47,991 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:48,466 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 17 hr time horizon... +2026-04-29 09:30:48,490 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 17 hr time horizon... +2026-04-29 09:30:48,506 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 10 hr time horizon... +2026-04-29 09:30:48,535 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 2 hr time horizon... +2026-04-29 09:30:48,702 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 14 hr time horizon... +2026-04-29 09:30:48,726 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:50,997 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 9 hr time horizon... +2026-04-29 09:30:51,017 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:51,893 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 8 hr time horizon... +2026-04-29 09:30:51,918 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 15 hr time horizon... +2026-04-29 09:30:51,943 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 2 hr time horizon... +2026-04-29 09:30:51,966 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:52,794 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 17 hr time horizon... +2026-04-29 09:30:52,818 - __main__ - INFO - Processing values: 2018-01-21 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:55,643 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 17 hr time horizon... +2026-04-29 09:30:55,667 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:55,837 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 1 hr time horizon... +2026-04-29 09:30:55,855 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:56,406 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 12 hr time horizon... +2026-04-29 09:30:56,436 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:56,505 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 17 hr time horizon... +2026-04-29 09:30:56,525 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:57,654 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 15 hr time horizon... +2026-04-29 09:30:57,676 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:57,826 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 7 hr time horizon... +2026-04-29 09:30:57,857 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:57,966 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 18 hr time horizon... +2026-04-29 09:30:57,987 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:30:59,565 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 3 hr time horizon... +2026-04-29 09:30:59,586 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:00,081 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 5 hr time horizon... +2026-04-29 09:31:00,102 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:00,721 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 5 hr time horizon... +2026-04-29 09:31:00,743 - __main__ - INFO - Processing values: 2018-01-24 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:01,323 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 18 hr time horizon... +2026-04-29 09:31:01,348 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:03,676 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:03,695 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:04,734 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 14 hr time horizon... +2026-04-29 09:31:04,760 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:04,934 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 14 hr time horizon... +2026-04-29 09:31:04,937 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 17 hr time horizon... +2026-04-29 09:31:04,971 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 8 hr time horizon... +2026-04-29 09:31:04,976 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:06,679 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 3 hr time horizon... +2026-04-29 09:31:06,700 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:08,042 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 9 hr time horizon... +2026-04-29 09:31:08,068 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:08,349 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 15 hr time horizon... +2026-04-29 09:31:08,373 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:08,900 - __main__ - INFO - Finished processing 2018-01-21 19:00:00 8 hr time horizon... +2026-04-29 09:31:08,921 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:11,226 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 14 hr time horizon... +2026-04-29 09:31:11,250 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:11,387 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:11,410 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:11,835 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 1 hr time horizon... +2026-04-29 09:31:11,859 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:13,034 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 4 hr time horizon... +2026-04-29 09:31:13,056 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:13,274 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 12 hr time horizon... +2026-04-29 09:31:13,296 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:13,924 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 7 hr time horizon... +2026-04-29 09:31:13,946 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:14,007 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 18 hr time horizon... +2026-04-29 09:31:14,030 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:14,817 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:14,845 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:15,760 - __main__ - INFO - Finished processing 2018-01-24 20:00:00 11 hr time horizon... +2026-04-29 09:31:15,780 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:16,212 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 16 hr time horizon... +2026-04-29 09:31:16,235 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:16,415 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 9 hr time horizon... +2026-04-29 09:31:16,437 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:18,747 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 1 hr time horizon... +2026-04-29 09:31:18,767 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:19,729 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 7 hr time horizon... +2026-04-29 09:31:19,755 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:19,978 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 18 hr time horizon... +2026-04-29 09:31:19,996 - __main__ - INFO - Processing values: 2018-01-01 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:20,937 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 8 hr time horizon... +2026-04-29 09:31:20,961 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:22,613 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 15 hr time horizon... +2026-04-29 09:31:22,639 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:23,040 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:23,064 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:24,954 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 14 hr time horizon... +2026-04-29 09:31:24,978 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:25,705 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:25,730 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:25,835 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:25,857 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:26,694 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 14 hr time horizon... +2026-04-29 09:31:26,719 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:26,821 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:26,845 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 9 hr time horizon... +2026-04-29 09:31:26,871 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 17 hr time horizon... +2026-04-29 09:31:26,892 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:27,659 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 4 hr time horizon... +2026-04-29 09:31:27,680 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:27,944 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 16 hr time horizon... +2026-04-29 09:31:27,972 - __main__ - INFO - Processing values: 2018-01-11 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:29,189 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 14 hr time horizon... +2026-04-29 09:31:29,211 - __main__ - INFO - Processing values: 2018-01-15 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:29,320 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 11 hr time horizon... +2026-04-29 09:31:29,346 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 9 hr time horizon... +2026-04-29 09:31:29,351 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 8 hr time horizon... +2026-04-29 09:31:29,370 - __main__ - INFO - Processing values: 2018-01-17 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:30,196 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 17 hr time horizon... +2026-04-29 09:31:30,221 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:32,927 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 1 hr time horizon... +2026-04-29 09:31:32,945 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:34,595 - __main__ - INFO - Finished processing 2018-01-01 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:34,613 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:35,204 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 13 hr time horizon... +2026-04-29 09:31:35,237 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:36,088 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 16 hr time horizon... +2026-04-29 09:31:36,108 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 12 hr time horizon... +2026-04-29 09:31:36,155 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 15 hr time horizon... +2026-04-29 09:31:36,173 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:36,917 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 2 hr time horizon... +2026-04-29 09:31:36,939 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:39,862 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 11 hr time horizon... +2026-04-29 09:31:39,888 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:40,171 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 9 hr time horizon... +2026-04-29 09:31:40,191 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:40,710 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 12 hr time horizon... +2026-04-29 09:31:40,733 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:41,712 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 9 hr time horizon... +2026-04-29 09:31:41,734 - __main__ - INFO - Processing values: 2018-01-21 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:43,021 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 11 hr time horizon... +2026-04-29 09:31:43,038 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:44,328 - __main__ - INFO - Finished processing 2018-01-11 02:00:00 3 hr time horizon... +2026-04-29 09:31:44,349 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:46,114 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 17 hr time horizon... +2026-04-29 09:31:46,133 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:46,385 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 1 hr time horizon... +2026-04-29 09:31:46,404 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:47,348 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 11 hr time horizon... +2026-04-29 09:31:47,377 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:48,984 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 16 hr time horizon... +2026-04-29 09:31:49,013 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:49,707 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:49,727 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 1 hr time horizon... +2026-04-29 09:31:49,748 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:49,768 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 15 hr time horizon... +2026-04-29 09:31:49,769 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 14 hr time horizon... +2026-04-29 09:31:49,787 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:50,197 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 7 hr time horizon... +2026-04-29 09:31:50,220 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 16 hr time horizon... +2026-04-29 09:31:50,242 - __main__ - INFO - Finished processing 2018-01-15 16:00:00 16 hr time horizon... +2026-04-29 09:31:50,268 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:50,748 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 9 hr time horizon... +2026-04-29 09:31:50,769 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 12 hr time horizon... +2026-04-29 09:31:50,774 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:50,795 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:51,221 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 4 hr time horizon... +2026-04-29 09:31:51,244 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:53,136 - __main__ - INFO - Finished processing 2018-01-17 12:00:00 14 hr time horizon... +2026-04-29 09:31:53,159 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:53,644 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 16 hr time horizon... +2026-04-29 09:31:53,669 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:54,492 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 13 hr time horizon... +2026-04-29 09:31:54,513 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:55,055 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 16 hr time horizon... +2026-04-29 09:31:55,077 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:57,027 - __main__ - INFO - Finished processing 2018-01-21 19:00:00 9 hr time horizon... +2026-04-29 09:31:57,055 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:31:57,563 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 8 hr time horizon... +2026-04-29 09:31:57,587 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 13 hr time horizon... +2026-04-29 09:31:57,710 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 16 hr time horizon... +2026-04-29 09:31:57,730 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:00,006 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 2 hr time horizon... +2026-04-29 09:32:00,027 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:01,063 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 8 hr time horizon... +2026-04-29 09:32:01,086 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:02,734 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:02,757 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:03,174 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 12 hr time horizon... +2026-04-29 09:32:03,197 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:04,295 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 1 hr time horizon... +2026-04-29 09:32:04,313 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:04,515 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 5 hr time horizon... +2026-04-29 09:32:04,538 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:04,806 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 6 hr time horizon... +2026-04-29 09:32:04,829 - __main__ - INFO - Processing values: 2018-01-09 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:05,668 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 12 hr time horizon... +2026-04-29 09:32:05,693 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:06,259 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 10 hr time horizon... +2026-04-29 09:32:06,288 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:07,268 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:07,296 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:08,183 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 1 hr time horizon... +2026-04-29 09:32:08,203 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:09,392 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 13 hr time horizon... +2026-04-29 09:32:09,416 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:09,508 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 10 hr time horizon... +2026-04-29 09:32:09,530 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:10,670 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 17 hr time horizon... +2026-04-29 09:32:10,690 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:13,174 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:13,196 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:14,259 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 14 hr time horizon... +2026-04-29 09:32:14,284 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 1 hr time horizon... +2026-04-29 09:32:14,490 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 13 hr time horizon... +2026-04-29 09:32:14,516 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:14,871 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 15 hr time horizon... +2026-04-29 09:32:14,891 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:17,219 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:17,249 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:17,704 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 16 hr time horizon... +2026-04-29 09:32:17,724 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:18,292 - __main__ - INFO - Finished processing 2018-01-09 16:00:00 2 hr time horizon... +2026-04-29 09:32:18,315 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:18,623 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 5 hr time horizon... +2026-04-29 09:32:18,645 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 14 hr time horizon... +2026-04-29 09:32:18,737 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 17 hr time horizon... +2026-04-29 09:32:18,757 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:19,471 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 9 hr time horizon... +2026-04-29 09:32:19,494 - __main__ - INFO - Processing values: 2018-01-26 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:21,839 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 4 hr time horizon... +2026-04-29 09:32:21,862 - __main__ - INFO - Processing values: 2018-01-21 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:22,680 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 3 hr time horizon... +2026-04-29 09:32:22,698 - __main__ - INFO - Processing values: 2018-01-26 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:23,670 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 17 hr time horizon... +2026-04-29 09:32:23,689 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:23,914 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 5 hr time horizon... +2026-04-29 09:32:23,935 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:24,489 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 14 hr time horizon... +2026-04-29 09:32:24,509 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:26,960 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 1 hr time horizon... +2026-04-29 09:32:26,977 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:27,816 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 14 hr time horizon... +2026-04-29 09:32:27,836 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:31,773 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:31,796 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,025 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,047 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,466 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,486 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,567 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 2 hr time horizon... +2026-04-29 09:32:32,589 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:32,901 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 12 hr time horizon... +2026-04-29 09:32:32,918 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 9 hr time horizon... +2026-04-29 09:32:32,922 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 7 hr time horizon... +2026-04-29 09:32:32,938 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:33,106 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 4 hr time horizon... +2026-04-29 09:32:33,126 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:33,485 - __main__ - INFO - Finished processing 2018-01-26 00:00:00 5 hr time horizon... +2026-04-29 09:32:33,503 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:33,751 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 14 hr time horizon... +2026-04-29 09:32:33,771 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:34,345 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 14 hr time horizon... +2026-04-29 09:32:34,370 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:36,123 - __main__ - INFO - Finished processing 2018-01-21 07:00:00 6 hr time horizon... +2026-04-29 09:32:36,144 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:36,803 - __main__ - INFO - Finished processing 2018-01-26 00:00:00 2 hr time horizon... +2026-04-29 09:32:36,823 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:38,153 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 5 hr time horizon... +2026-04-29 09:32:38,182 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:39,254 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 12 hr time horizon... +2026-04-29 09:32:39,278 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 3 hr time horizon... +2026-04-29 09:32:39,392 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 14 hr time horizon... +2026-04-29 09:32:39,417 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:42,436 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 16 hr time horizon... +2026-04-29 09:32:42,461 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:42,818 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 17 hr time horizon... +2026-04-29 09:32:42,839 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:44,088 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:44,118 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:45,367 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:45,400 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:47,322 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:47,345 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:47,477 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 13 hr time horizon... +2026-04-29 09:32:47,506 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:47,742 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 5 hr time horizon... +2026-04-29 09:32:47,772 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:47,987 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 7 hr time horizon... +2026-04-29 09:32:48,008 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:48,279 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:48,300 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:48,399 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 4 hr time horizon... +2026-04-29 09:32:48,427 - __main__ - INFO - Processing values: 2018-01-05 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:48,790 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:48,812 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:49,346 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:32:49,370 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:50,007 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 11 hr time horizon... +2026-04-29 09:32:50,028 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:50,582 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 18 hr time horizon... +2026-04-29 09:32:50,612 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:52,594 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 10 hr time horizon... +2026-04-29 09:32:52,615 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:52,907 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:52,932 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:53,980 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:54,005 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:54,652 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 12 hr time horizon... +2026-04-29 09:32:54,674 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 2 hr time horizon... +2026-04-29 09:32:54,872 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 3 hr time horizon... +2026-04-29 09:32:54,895 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:58,123 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 15 hr time horizon... +2026-04-29 09:32:58,146 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:58,339 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 9 hr time horizon... +2026-04-29 09:32:58,365 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:59,653 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 1 hr time horizon... +2026-04-29 09:32:59,673 - __main__ - INFO - Processing values: 2018-01-04 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:32:59,826 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 17 hr time horizon... +2026-04-29 09:32:59,853 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:02,266 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:02,289 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:02,769 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 8 hr time horizon... +2026-04-29 09:33:02,791 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:02,941 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 7 hr time horizon... +2026-04-29 09:33:02,963 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:03,051 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 1 hr time horizon... +2026-04-29 09:33:03,070 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:03,728 - __main__ - INFO - Finished processing 2018-01-05 02:00:00 17 hr time horizon... +2026-04-29 09:33:03,761 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:04,178 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 18 hr time horizon... +2026-04-29 09:33:04,201 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:04,284 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 10 hr time horizon... +2026-04-29 09:33:04,309 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:05,238 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 5 hr time horizon... +2026-04-29 09:33:05,258 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:05,530 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 11 hr time horizon... +2026-04-29 09:33:05,552 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:06,623 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 2 hr time horizon... +2026-04-29 09:33:06,647 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:07,883 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 2 hr time horizon... +2026-04-29 09:33:07,903 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:08,813 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 9 hr time horizon... +2026-04-29 09:33:08,838 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:09,364 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 2 hr time horizon... +2026-04-29 09:33:09,383 - __main__ - INFO - Processing values: 2018-01-24 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:10,681 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 15 hr time horizon... +2026-04-29 09:33:10,704 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:12,668 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 4 hr time horizon... +2026-04-29 09:33:12,687 - __main__ - INFO - Processing values: 2018-01-18 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:12,966 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 3 hr time horizon... +2026-04-29 09:33:12,989 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:13,148 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 4 hr time horizon... +2026-04-29 09:33:13,168 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:14,565 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 17 hr time horizon... +2026-04-29 09:33:14,586 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:14,744 - __main__ - INFO - Finished processing 2018-01-04 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:14,769 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:16,237 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 9 hr time horizon... +2026-04-29 09:33:16,259 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:16,578 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 15 hr time horizon... +2026-04-29 09:33:16,600 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:16,734 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 4 hr time horizon... +2026-04-29 09:33:16,758 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:16,858 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 2 hr time horizon... +2026-04-29 09:33:16,875 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:17,438 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 15 hr time horizon... +2026-04-29 09:33:17,465 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:18,581 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 6 hr time horizon... +2026-04-29 09:33:18,601 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:18,864 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 11 hr time horizon... +2026-04-29 09:33:18,884 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:19,555 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 17 hr time horizon... +2026-04-29 09:33:19,580 - __main__ - INFO - Processing values: 2018-01-15 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:20,286 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 12 hr time horizon... +2026-04-29 09:33:20,310 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:21,644 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 16 hr time horizon... +2026-04-29 09:33:21,667 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:22,552 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 7 hr time horizon... +2026-04-29 09:33:22,572 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 5 hr time horizon... +2026-04-29 09:33:22,783 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 14 hr time horizon... +2026-04-29 09:33:22,804 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 13 hr time horizon... +2026-04-29 09:33:22,971 - __main__ - INFO - Finished processing 2018-01-24 17:00:00 8 hr time horizon... +2026-04-29 09:33:22,990 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:26,542 - __main__ - INFO - Finished processing 2018-01-18 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:26,566 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:27,149 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 17 hr time horizon... +2026-04-29 09:33:27,169 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 8 hr time horizon... +2026-04-29 09:33:27,279 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 8 hr time horizon... +2026-04-29 09:33:27,300 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:27,431 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 3 hr time horizon... +2026-04-29 09:33:27,457 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:29,584 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:29,613 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:30,137 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 17 hr time horizon... +2026-04-29 09:33:30,159 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:30,169 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 9 hr time horizon... +2026-04-29 09:33:30,190 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 8 hr time horizon... +2026-04-29 09:33:30,200 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 7 hr time horizon... +2026-04-29 09:33:30,219 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:30,541 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:30,564 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:31,743 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 13 hr time horizon... +2026-04-29 09:33:31,763 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 17 hr time horizon... +2026-04-29 09:33:31,929 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 17 hr time horizon... +2026-04-29 09:33:31,955 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:33,112 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 17 hr time horizon... +2026-04-29 09:33:33,133 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:34,182 - __main__ - INFO - Finished processing 2018-01-15 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:34,203 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:35,464 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:35,495 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:36,057 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 9 hr time horizon... +2026-04-29 09:33:36,087 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:36,573 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 14 hr time horizon... +2026-04-29 09:33:36,600 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:37,190 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 5 hr time horizon... +2026-04-29 09:33:37,224 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 14 hr time horizon... +2026-04-29 09:33:37,386 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 13 hr time horizon... +2026-04-29 09:33:37,409 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:37,772 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:37,806 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:40,346 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 13 hr time horizon... +2026-04-29 09:33:40,378 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:41,229 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 8 hr time horizon... +2026-04-29 09:33:41,250 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:41,393 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 10 hr time horizon... +2026-04-29 09:33:41,414 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:42,072 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 2 hr time horizon... +2026-04-29 09:33:42,099 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:33:43,600 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:43,625 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:44,273 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 1 hr time horizon... +2026-04-29 09:33:44,295 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:44,463 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 6 hr time horizon... +2026-04-29 09:33:44,484 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:44,856 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:44,880 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 2 hr time horizon... +2026-04-29 09:33:44,958 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 10 hr time horizon... +2026-04-29 09:33:44,978 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:45,519 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 2 hr time horizon... +2026-04-29 09:33:45,547 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:48,100 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:48,124 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:49,248 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 3 hr time horizon... +2026-04-29 09:33:49,267 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:49,429 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:49,458 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:33:50,602 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:50,627 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 7 hr time horizon... +2026-04-29 09:33:50,761 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 5 hr time horizon... +2026-04-29 09:33:50,780 - __main__ - INFO - Processing values: 2018-01-03 06:00:00 14 hr time horizon... +2026-04-29 09:33:50,854 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 13 hr time horizon... +2026-04-29 09:33:50,874 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:50,941 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 14 hr time horizon... +2026-04-29 09:33:50,965 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:52,237 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 14 hr time horizon... +2026-04-29 09:33:52,263 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:52,912 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:52,938 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:54,282 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 12 hr time horizon... +2026-04-29 09:33:54,304 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:55,736 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 8 hr time horizon... +2026-04-29 09:33:55,758 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:56,083 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 6 hr time horizon... +2026-04-29 09:33:56,105 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:56,250 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:56,275 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:57,536 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 15 hr time horizon... +2026-04-29 09:33:57,566 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:58,079 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 2 hr time horizon... +2026-04-29 09:33:58,098 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:58,370 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 6 hr time horizon... +2026-04-29 09:33:58,399 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:58,946 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 1 hr time horizon... +2026-04-29 09:33:58,967 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:33:59,277 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 7 hr time horizon... +2026-04-29 09:33:59,295 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 15 hr time horizon... +2026-04-29 09:33:59,456 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 5 hr time horizon... +2026-04-29 09:33:59,482 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:01,936 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 16 hr time horizon... +2026-04-29 09:34:01,956 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:04,599 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 9 hr time horizon... +2026-04-29 09:34:04,621 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:04,843 - __main__ - INFO - Finished processing 2018-01-03 06:00:00 14 hr time horizon... +2026-04-29 09:34:04,864 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:05,179 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 4 hr time horizon... +2026-04-29 09:34:05,213 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:05,704 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 14 hr time horizon... +2026-04-29 09:34:05,726 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:08,078 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 16 hr time horizon... +2026-04-29 09:34:08,108 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:08,255 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 16 hr time horizon... +2026-04-29 09:34:08,282 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:08,968 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:08,997 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:09,672 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 9 hr time horizon... +2026-04-29 09:34:09,695 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:09,862 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 10 hr time horizon... +2026-04-29 09:34:09,886 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:12,016 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 14 hr time horizon... +2026-04-29 09:34:12,042 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:34:12,402 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:12,427 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:12,544 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 13 hr time horizon... +2026-04-29 09:34:12,564 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 17 hr time horizon... +2026-04-29 09:34:12,580 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 17 hr time horizon... +2026-04-29 09:34:12,601 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:12,783 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 8 hr time horizon... +2026-04-29 09:34:12,804 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:13,149 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 15 hr time horizon... +2026-04-29 09:34:13,168 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:14,075 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 10 hr time horizon... +2026-04-29 09:34:14,097 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:16,295 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:16,320 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:18,426 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 7 hr time horizon... +2026-04-29 09:34:18,448 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:18,531 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 7 hr time horizon... +2026-04-29 09:34:18,560 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:19,005 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 13 hr time horizon... +2026-04-29 09:34:19,030 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:19,138 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 6 hr time horizon... +2026-04-29 09:34:19,160 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:19,465 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 4 hr time horizon... +2026-04-29 09:34:19,487 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:20,381 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 14 hr time horizon... +2026-04-29 09:34:20,403 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:22,457 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 1 hr time horizon... +2026-04-29 09:34:22,476 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:23,858 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 15 hr time horizon... +2026-04-29 09:34:23,886 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:24,366 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 2 hr time horizon... +2026-04-29 09:34:24,387 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:24,950 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:24,978 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:26,954 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:26,983 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:27,143 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:27,166 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:27,799 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 16 hr time horizon... +2026-04-29 09:34:27,824 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:27,906 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 1 hr time horizon... +2026-04-29 09:34:27,928 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:28,047 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 4 hr time horizon... +2026-04-29 09:34:28,073 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:28,358 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 17 hr time horizon... +2026-04-29 09:34:28,381 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 6 hr time horizon... +2026-04-29 09:34:28,709 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 18 hr time horizon... +2026-04-29 09:34:28,739 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:29,783 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 14 hr time horizon... +2026-04-29 09:34:29,808 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:31,758 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:31,783 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:33,820 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 12 hr time horizon... +2026-04-29 09:34:33,844 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:34,030 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 5 hr time horizon... +2026-04-29 09:34:34,053 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:34,595 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 8 hr time horizon... +2026-04-29 09:34:34,616 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 6 hr time horizon... +2026-04-29 09:34:34,724 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 9 hr time horizon... +2026-04-29 09:34:34,745 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:35,031 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 13 hr time horizon... +2026-04-29 09:34:35,056 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:36,141 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 18 hr time horizon... +2026-04-29 09:34:36,163 - __main__ - INFO - Processing values: 2018-01-29 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:37,868 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 2 hr time horizon... +2026-04-29 09:34:37,889 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:38,743 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 11 hr time horizon... +2026-04-29 09:34:38,767 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:39,221 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 16 hr time horizon... +2026-04-29 09:34:39,252 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:39,648 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 16 hr time horizon... +2026-04-29 09:34:39,670 - __main__ - INFO - Processing values: 2018-01-02 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:41,831 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 7 hr time horizon... +2026-04-29 09:34:41,853 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 13 hr time horizon... +2026-04-29 09:34:41,856 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 2 hr time horizon... +2026-04-29 09:34:41,875 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:43,454 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 8 hr time horizon... +2026-04-29 09:34:43,485 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:43,589 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 6 hr time horizon... +2026-04-29 09:34:43,612 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:44,081 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 18 hr time horizon... +2026-04-29 09:34:44,104 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:44,203 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 15 hr time horizon... +2026-04-29 09:34:44,224 - __main__ - INFO - Processing values: 2018-01-13 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:45,839 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 9 hr time horizon... +2026-04-29 09:34:45,863 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:45,995 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 16 hr time horizon... +2026-04-29 09:34:46,017 - __main__ - INFO - Processing values: 2018-01-13 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:47,869 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 14 hr time horizon... +2026-04-29 09:34:47,893 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:48,780 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 3 hr time horizon... +2026-04-29 09:34:48,804 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:48,968 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 9 hr time horizon... +2026-04-29 09:34:48,990 - __main__ - INFO - Processing values: 2018-01-29 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/core.py:1114: UserWarning: Will not remove GRIB file because it previously existed. + warnings.warn("Will not remove GRIB file because it previously existed.") +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:49,262 - __main__ - INFO - No valid message found: PosixPath('/home/kperry/data/hrrr/20180109/subset_1d21165b__hrrr.t12z.wrfprsf02.grib2') +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:49,343 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 14 hr time horizon... +2026-04-29 09:34:49,362 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:50,278 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 6 hr time horizon... +2026-04-29 09:34:50,302 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:50,941 - __main__ - INFO - Finished processing 2018-01-29 07:00:00 14 hr time horizon... +2026-04-29 09:34:50,962 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:53,597 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:53,617 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:54,150 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 12 hr time horizon... +2026-04-29 09:34:54,169 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 2 hr time horizon... +2026-04-29 09:34:54,186 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 12 hr time horizon... +2026-04-29 09:34:54,209 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 17 hr time horizon... +2026-04-29 09:34:54,263 - __main__ - INFO - Download failed for {date} {time_horizon} hr time horizon... +2026-04-29 09:34:54,265 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:54,403 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 13 hr time horizon... +2026-04-29 09:34:54,432 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:55,023 - __main__ - INFO - Finished processing 2018-01-02 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:55,050 - __main__ - INFO - Processing values: 2018-01-05 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:56,594 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 2 hr time horizon... +2026-04-29 09:34:56,615 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:57,374 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 6 hr time horizon... +2026-04-29 09:34:57,397 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:58,142 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 10 hr time horizon... +2026-04-29 09:34:58,169 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:58,746 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 11 hr time horizon... +2026-04-29 09:34:58,777 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:58,914 - __main__ - INFO - Finished processing 2018-01-13 09:00:00 9 hr time horizon... +2026-04-29 09:34:58,934 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:34:59,509 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 7 hr time horizon... +2026-04-29 09:34:59,529 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:00,673 - __main__ - INFO - Finished processing 2018-01-13 13:00:00 3 hr time horizon... +2026-04-29 09:35:00,704 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:00,916 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 1 hr time horizon... +2026-04-29 09:35:00,938 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:03,147 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 12 hr time horizon... +2026-04-29 09:35:03,172 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:03,689 - __main__ - INFO - Finished processing 2018-01-29 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:03,710 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:04,492 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 11 hr time horizon... +2026-04-29 09:35:04,516 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:05,012 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 5 hr time horizon... +2026-04-29 09:35:05,034 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:05,768 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 1 hr time horizon... +2026-04-29 09:35:05,789 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:35:08,507 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:08,530 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:09,370 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 8 hr time horizon... +2026-04-29 09:35:09,393 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 12 hr time horizon... +2026-04-29 09:35:09,543 - __main__ - INFO - Finished processing 2018-01-05 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:09,566 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:09,592 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 17 hr time horizon... +2026-04-29 09:35:09,620 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:09,702 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 2 hr time horizon... +2026-04-29 09:35:09,723 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:10,185 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 17 hr time horizon... +2026-04-29 09:35:10,205 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:10,639 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 18 hr time horizon... +2026-04-29 09:35:10,659 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:12,429 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:12,452 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:13,366 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 12 hr time horizon... +2026-04-29 09:35:13,393 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:13,849 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 16 hr time horizon... +2026-04-29 09:35:13,870 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 13 hr time horizon... +2026-04-29 09:35:13,973 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 13 hr time horizon... +2026-04-29 09:35:13,996 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:15,481 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 14 hr time horizon... +2026-04-29 09:35:15,506 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:17,207 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 14 hr time horizon... +2026-04-29 09:35:17,231 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:17,975 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 12 hr time horizon... +2026-04-29 09:35:17,994 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:18,739 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 5 hr time horizon... +2026-04-29 09:35:18,761 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:19,344 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 6 hr time horizon... +2026-04-29 09:35:19,365 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:20,017 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 10 hr time horizon... +2026-04-29 09:35:20,042 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:20,590 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 7 hr time horizon... +2026-04-29 09:35:20,614 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:23,090 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 3 hr time horizon... +2026-04-29 09:35:23,113 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:24,205 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 12 hr time horizon... +2026-04-29 09:35:24,229 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:24,407 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 12 hr time horizon... +2026-04-29 09:35:24,435 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 2 hr time horizon... +2026-04-29 09:35:24,449 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:24,474 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 1 hr time horizon... +2026-04-29 09:35:24,731 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 6 hr time horizon... +2026-04-29 09:35:24,754 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:24,936 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 12 hr time horizon... +2026-04-29 09:35:24,956 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:27,050 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 18 hr time horizon... +2026-04-29 09:35:27,078 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:28,475 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 8 hr time horizon... +2026-04-29 09:35:28,496 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:28,683 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 7 hr time horizon... +2026-04-29 09:35:28,710 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:28,929 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 8 hr time horizon... +2026-04-29 09:35:28,952 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:29,197 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 13 hr time horizon... +2026-04-29 09:35:29,224 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:30,917 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 8 hr time horizon... +2026-04-29 09:35:30,948 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:32,275 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 17 hr time horizon... +2026-04-29 09:35:32,323 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:32,491 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:32,528 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:33,638 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 7 hr time horizon... +2026-04-29 09:35:33,657 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:34,956 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 9 hr time horizon... +2026-04-29 09:35:34,980 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:35,119 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 8 hr time horizon... +2026-04-29 09:35:35,140 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 18 hr time horizon... +2026-04-29 09:35:35,462 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 13 hr time horizon... +2026-04-29 09:35:35,485 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:35,639 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 5 hr time horizon... +2026-04-29 09:35:35,662 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:38,559 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 12 hr time horizon... +2026-04-29 09:35:38,586 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:39,038 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:39,059 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:39,301 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 1 hr time horizon... +2026-04-29 09:35:39,323 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:39,514 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 15 hr time horizon... +2026-04-29 09:35:39,536 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:39,870 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 15 hr time horizon... +2026-04-29 09:35:39,891 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:40,084 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 2 hr time horizon... +2026-04-29 09:35:40,104 - __main__ - INFO - Processing values: 2018-01-22 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:41,683 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 5 hr time horizon... +2026-04-29 09:35:41,706 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:43,396 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 11 hr time horizon... +2026-04-29 09:35:43,418 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:44,201 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 17 hr time horizon... +2026-04-29 09:35:44,221 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:44,414 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 3 hr time horizon... +2026-04-29 09:35:44,443 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:45,098 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 14 hr time horizon... +2026-04-29 09:35:45,121 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:47,169 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 5 hr time horizon... +2026-04-29 09:35:47,190 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:48,634 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 11 hr time horizon... +2026-04-29 09:35:48,658 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:49,895 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 18 hr time horizon... +2026-04-29 09:35:49,929 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:50,064 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 1 hr time horizon... +2026-04-29 09:35:50,083 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 18 hr time horizon... +2026-04-29 09:35:50,110 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 12 hr time horizon... +2026-04-29 09:35:50,139 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:50,385 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:50,408 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:51,418 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 6 hr time horizon... +2026-04-29 09:35:51,442 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:52,230 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 7 hr time horizon... +2026-04-29 09:35:52,262 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:53,668 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 3 hr time horizon... +2026-04-29 09:35:53,689 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:54,246 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 8 hr time horizon... +2026-04-29 09:35:54,268 - __main__ - INFO - Processing values: 2018-01-19 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:54,415 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 12 hr time horizon... +2026-04-29 09:35:54,440 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:54,535 - __main__ - INFO - Finished processing 2018-01-22 12:00:00 1 hr time horizon... +2026-04-29 09:35:54,555 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 14 hr time horizon... +2026-04-29 09:35:54,700 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 8 hr time horizon... +2026-04-29 09:35:54,723 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:57,366 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 4 hr time horizon... +2026-04-29 09:35:57,389 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:57,402 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 2 hr time horizon... +2026-04-29 09:35:57,425 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:58,833 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 6 hr time horizon... +2026-04-29 09:35:58,858 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:59,630 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:59,650 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 16 hr time horizon... +2026-04-29 09:35:59,782 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:35:59,804 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:00,251 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 13 hr time horizon... +2026-04-29 09:36:00,273 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:01,379 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 11 hr time horizon... +2026-04-29 09:36:01,399 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:03,520 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 15 hr time horizon... +2026-04-29 09:36:03,539 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:04,393 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 1 hr time horizon... +2026-04-29 09:36:04,411 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:04,687 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 7 hr time horizon... +2026-04-29 09:36:04,707 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:05,670 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 8 hr time horizon... +2026-04-29 09:36:05,690 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:08,622 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 1 hr time horizon... +2026-04-29 09:36:08,639 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:09,624 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 18 hr time horizon... +2026-04-29 09:36:09,644 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:15,361 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 8 hr time horizon... +2026-04-29 09:36:15,386 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:15,897 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 6 hr time horizon... +2026-04-29 09:36:15,916 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:16,899 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 2 hr time horizon... +2026-04-29 09:36:16,923 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:17,475 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 17 hr time horizon... +2026-04-29 09:36:17,494 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 11 hr time horizon... +2026-04-29 09:36:17,836 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 11 hr time horizon... +2026-04-29 09:36:17,853 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 16 hr time horizon... +2026-04-29 09:36:17,920 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 8 hr time horizon... +2026-04-29 09:36:17,938 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:20,840 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 3 hr time horizon... +2026-04-29 09:36:20,856 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:21,932 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 3 hr time horizon... +2026-04-29 09:36:21,948 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:28,044 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 18 hr time horizon... +2026-04-29 09:36:28,062 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:29,228 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 7 hr time horizon... +2026-04-29 09:36:29,247 - __main__ - INFO - Processing values: 2018-01-30 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:30,302 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 11 hr time horizon... +2026-04-29 09:36:30,319 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 11 hr time horizon... +2026-04-29 09:36:30,357 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 16 hr time horizon... +2026-04-29 09:36:30,374 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:31,088 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 9 hr time horizon... +2026-04-29 09:36:31,105 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:31,971 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 14 hr time horizon... +2026-04-29 09:36:31,994 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:33,456 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 12 hr time horizon... +2026-04-29 09:36:33,478 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:34,291 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 10 hr time horizon... +2026-04-29 09:36:34,310 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:37,646 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 1 hr time horizon... +2026-04-29 09:36:37,661 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:40,505 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 14 hr time horizon... +2026-04-29 09:36:40,521 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:42,370 - __main__ - INFO - Finished processing 2018-01-30 04:00:00 7 hr time horizon... +2026-04-29 09:36:42,393 - __main__ - INFO - Processing values: 2018-01-07 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:43,158 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 11 hr time horizon... +2026-04-29 09:36:43,176 - __main__ - INFO - Processing values: 2018-01-18 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:44,053 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:44,072 - __main__ - INFO - Processing values: 2018-01-26 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:44,145 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 10 hr time horizon... +2026-04-29 09:36:44,167 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:44,716 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 11 hr time horizon... +2026-04-29 09:36:44,738 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 2 hr time horizon... +2026-04-29 09:36:44,856 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 14 hr time horizon... +2026-04-29 09:36:44,875 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:45,920 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 4 hr time horizon... +2026-04-29 09:36:45,939 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:50,147 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 7 hr time horizon... +2026-04-29 09:36:50,166 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 17 hr time horizon... +2026-04-29 09:36:50,241 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 3 hr time horizon... +2026-04-29 09:36:50,259 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:52,626 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 2 hr time horizon... +2026-04-29 09:36:52,642 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:53,393 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 16 hr time horizon... +2026-04-29 09:36:53,411 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:55,731 - __main__ - INFO - Finished processing 2018-01-07 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:55,760 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:56,560 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 8 hr time horizon... +2026-04-29 09:36:56,589 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:56,981 - __main__ - INFO - Finished processing 2018-01-19 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:57,002 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:57,352 - __main__ - INFO - Finished processing 2018-01-26 21:00:00 16 hr time horizon... +2026-04-29 09:36:57,373 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:57,756 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 2 hr time horizon... +2026-04-29 09:36:57,773 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:57,835 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 14 hr time horizon... +2026-04-29 09:36:57,853 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 17 hr time horizon... +2026-04-29 09:36:57,894 - __main__ - INFO - Finished processing 2018-01-18 03:00:00 3 hr time horizon... +2026-04-29 09:36:57,913 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:36:58,508 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 17 hr time horizon... +2026-04-29 09:36:58,529 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 15 hr time horizon... +2026-04-29 09:36:59,008 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 4 hr time horizon... +2026-04-29 09:36:59,027 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:02,811 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 14 hr time horizon... +2026-04-29 09:37:02,830 - __main__ - INFO - Processing values: 2018-01-03 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:05,885 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 10 hr time horizon... +2026-04-29 09:37:05,902 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:09,437 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 13 hr time horizon... +2026-04-29 09:37:09,456 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:10,426 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:10,452 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:10,497 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 12 hr time horizon... +2026-04-29 09:37:10,521 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:11,153 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 5 hr time horizon... +2026-04-29 09:37:11,172 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:11,487 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 10 hr time horizon... +2026-04-29 09:37:11,511 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:11,650 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 9 hr time horizon... +2026-04-29 09:37:11,671 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 17 hr time horizon... +2026-04-29 09:37:11,693 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:11,714 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:12,618 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 15 hr time horizon... +2026-04-29 09:37:12,629 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 4 hr time horizon... +2026-04-29 09:37:12,644 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 7 hr time horizon... +2026-04-29 09:37:12,655 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 5 hr time horizon... +2026-04-29 09:37:13,122 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 17 hr time horizon... +2026-04-29 09:37:13,141 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:17,077 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 17 hr time horizon... +2026-04-29 09:37:17,098 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:18,941 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 1 hr time horizon... +2026-04-29 09:37:18,959 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:20,819 - __main__ - INFO - Finished processing 2018-01-03 17:00:00 5 hr time horizon... +2026-04-29 09:37:20,850 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:23,473 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:23,495 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,029 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 15 hr time horizon... +2026-04-29 09:37:24,057 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,078 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,103 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,554 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 14 hr time horizon... +2026-04-29 09:37:24,577 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,800 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 3 hr time horizon... +2026-04-29 09:37:24,820 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,847 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 11 hr time horizon... +2026-04-29 09:37:24,868 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:24,991 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 5 hr time horizon... +2026-04-29 09:37:25,014 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:25,124 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:25,149 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:26,051 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 7 hr time horizon... +2026-04-29 09:37:26,078 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:26,585 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 5 hr time horizon... +2026-04-29 09:37:26,607 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:26,898 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 3 hr time horizon... +2026-04-29 09:37:26,918 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:28,098 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 5 hr time horizon... +2026-04-29 09:37:28,125 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 15 hr time horizon... +2026-04-29 09:37:28,250 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 16 hr time horizon... +2026-04-29 09:37:28,279 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:31,086 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:31,109 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:32,050 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 8 hr time horizon... +2026-04-29 09:37:32,073 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:34,325 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 5 hr time horizon... +2026-04-29 09:37:34,349 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:35,377 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 3 hr time horizon... +2026-04-29 09:37:35,401 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:37,624 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:37,647 - __main__ - INFO - Processing values: 2018-01-05 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:38,029 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 17 hr time horizon... +2026-04-29 09:37:38,060 - __main__ - INFO - Processing values: 2018-01-29 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:38,178 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 11 hr time horizon... +2026-04-29 09:37:38,198 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:38,377 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 9 hr time horizon... +2026-04-29 09:37:38,396 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:38,797 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 8 hr time horizon... +2026-04-29 09:37:38,829 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:39,928 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 12 hr time horizon... +2026-04-29 09:37:39,951 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 2 hr time horizon... +2026-04-29 09:37:40,034 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 2 hr time horizon... +2026-04-29 09:37:40,062 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:40,232 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 13 hr time horizon... +2026-04-29 09:37:40,262 - __main__ - INFO - Processing values: 2018-01-13 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:41,580 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:41,600 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:41,734 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 9 hr time horizon... +2026-04-29 09:37:41,757 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:42,194 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 6 hr time horizon... +2026-04-29 09:37:42,216 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:42,822 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 5 hr time horizon... +2026-04-29 09:37:42,846 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:43,013 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 15 hr time horizon... +2026-04-29 09:37:43,036 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:45,482 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:45,505 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 12 hr time horizon... +2026-04-29 09:37:45,622 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 9 hr time horizon... +2026-04-29 09:37:45,645 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:46,093 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 1 hr time horizon... +2026-04-29 09:37:46,118 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:48,603 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 11 hr time horizon... +2026-04-29 09:37:48,623 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:49,019 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 9 hr time horizon... +2026-04-29 09:37:49,038 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:50,661 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:50,687 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:51,397 - __main__ - INFO - Finished processing 2018-01-05 12:00:00 6 hr time horizon... +2026-04-29 09:37:51,430 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:51,640 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 18 hr time horizon... +2026-04-29 09:37:51,663 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:52,593 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 15 hr time horizon... +2026-04-29 09:37:52,616 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:53,349 - __main__ - INFO - Finished processing 2018-01-29 15:00:00 3 hr time horizon... +2026-04-29 09:37:53,370 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:53,802 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 13 hr time horizon... +2026-04-29 09:37:53,823 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:54,073 - __main__ - INFO - Finished processing 2018-01-13 06:00:00 16 hr time horizon... +2026-04-29 09:37:54,092 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:54,371 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 6 hr time horizon... +2026-04-29 09:37:54,393 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:54,497 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 2 hr time horizon... +2026-04-29 09:37:54,515 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:54,767 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 1 hr time horizon... +2026-04-29 09:37:54,787 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:55,935 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 7 hr time horizon... +2026-04-29 09:37:55,959 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:56,889 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 13 hr time horizon... +2026-04-29 09:37:56,924 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:57,411 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:37:57,444 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:58,457 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 14 hr time horizon... +2026-04-29 09:37:58,479 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:37:59,731 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 11 hr time horizon... +2026-04-29 09:37:59,754 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 4 hr time horizon... +2026-04-29 09:37:59,918 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 8 hr time horizon... +2026-04-29 09:37:59,941 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:02,637 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 4 hr time horizon... +2026-04-29 09:38:02,661 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:03,440 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 1 hr time horizon... +2026-04-29 09:38:03,463 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,035 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 15 hr time horizon... +2026-04-29 09:38:08,038 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 18 hr time horizon... +2026-04-29 09:38:08,049 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 11 hr time horizon... +2026-04-29 09:38:08,075 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 6 hr time horizon... +2026-04-29 09:38:08,082 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 8 hr time horizon... +2026-04-29 09:38:08,089 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,118 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 5 hr time horizon... +2026-04-29 09:38:08,144 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,320 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 10 hr time horizon... +2026-04-29 09:38:08,340 - __main__ - INFO - Processing values: 2018-01-26 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,379 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 15 hr time horizon... +2026-04-29 09:38:08,406 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,495 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 14 hr time horizon... +2026-04-29 09:38:08,512 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 9 hr time horizon... +2026-04-29 09:38:08,545 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 15 hr time horizon... +2026-04-29 09:38:08,569 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,956 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:08,978 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:10,352 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 9 hr time horizon... +2026-04-29 09:38:10,376 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:10,516 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 10 hr time horizon... +2026-04-29 09:38:10,540 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:11,881 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 7 hr time horizon... +2026-04-29 09:38:11,904 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:12,156 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 12 hr time horizon... +2026-04-29 09:38:12,180 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:13,549 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 5 hr time horizon... +2026-04-29 09:38:13,579 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:14,193 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 11 hr time horizon... +2026-04-29 09:38:14,216 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:14,466 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 12 hr time horizon... +2026-04-29 09:38:14,486 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:15,013 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 4 hr time horizon... +2026-04-29 09:38:15,038 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:17,194 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 14 hr time horizon... +2026-04-29 09:38:17,217 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:18,295 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 16 hr time horizon... +2026-04-29 09:38:18,319 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:22,158 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 6 hr time horizon... +2026-04-29 09:38:22,182 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:22,448 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 3 hr time horizon... +2026-04-29 09:38:22,474 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:22,660 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 17 hr time horizon... +2026-04-29 09:38:22,689 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:38:22,830 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:22,855 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:23,402 - __main__ - INFO - Finished processing 2018-01-26 15:00:00 17 hr time horizon... +2026-04-29 09:38:23,426 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:23,961 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 9 hr time horizon... +2026-04-29 09:38:23,987 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:24,155 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:24,183 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:24,713 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 15 hr time horizon... +2026-04-29 09:38:24,733 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:24,771 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 6 hr time horizon... +2026-04-29 09:38:24,793 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:25,199 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 8 hr time horizon... +2026-04-29 09:38:25,226 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:26,186 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 15 hr time horizon... +2026-04-29 09:38:26,227 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:28,190 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 2 hr time horizon... +2026-04-29 09:38:28,215 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:28,466 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 18 hr time horizon... +2026-04-29 09:38:28,487 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:28,633 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:28,674 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:29,898 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 10 hr time horizon... +2026-04-29 09:38:29,923 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:30,370 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 9 hr time horizon... +2026-04-29 09:38:30,392 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 1 hr time horizon... +2026-04-29 09:38:30,503 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 16 hr time horizon... +2026-04-29 09:38:30,524 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:32,671 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 8 hr time horizon... +2026-04-29 09:38:32,692 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:33,895 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 16 hr time horizon... +2026-04-29 09:38:33,915 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:36,410 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:36,438 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:36,935 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:36,959 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:37,022 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:37,042 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:37,679 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 3 hr time horizon... +2026-04-29 09:38:37,699 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:37,835 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:37,856 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:38,454 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 2 hr time horizon... +2026-04-29 09:38:38,473 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:38,727 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 11 hr time horizon... +2026-04-29 09:38:38,750 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:39,983 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 7 hr time horizon... +2026-04-29 09:38:40,010 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 15 hr time horizon... +2026-04-29 09:38:40,016 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 12 hr time horizon... +2026-04-29 09:38:40,039 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:38:40,828 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:40,854 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 5 hr time horizon... +2026-04-29 09:38:40,962 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 16 hr time horizon... +2026-04-29 09:38:40,989 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:43,025 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 15 hr time horizon... +2026-04-29 09:38:43,051 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:43,601 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 1 hr time horizon... +2026-04-29 09:38:43,621 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:44,867 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 7 hr time horizon... +2026-04-29 09:38:44,889 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:45,380 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 15 hr time horizon... +2026-04-29 09:38:45,400 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 7 hr time horizon... +2026-04-29 09:38:45,431 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 1 hr time horizon... +2026-04-29 09:38:45,450 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:47,508 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 2 hr time horizon... +2026-04-29 09:38:47,536 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:48,185 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 3 hr time horizon... +2026-04-29 09:38:48,204 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:48,781 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 9 hr time horizon... +2026-04-29 09:38:48,802 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:50,157 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 1 hr time horizon... +2026-04-29 09:38:50,178 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:50,946 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 7 hr time horizon... +2026-04-29 09:38:50,970 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:51,120 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 10 hr time horizon... +2026-04-29 09:38:51,143 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:51,959 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:51,981 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:52,813 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 4 hr time horizon... +2026-04-29 09:38:52,837 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 9 hr time horizon... +2026-04-29 09:38:52,917 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 7 hr time horizon... +2026-04-29 09:38:52,939 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:53,771 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 13 hr time horizon... +2026-04-29 09:38:53,792 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:54,734 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 15 hr time horizon... +2026-04-29 09:38:54,760 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:56,205 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 5 hr time horizon... +2026-04-29 09:38:56,225 - __main__ - INFO - Processing values: 2018-01-09 06:00:00 4 hr time horizon... +2026-04-29 09:38:56,303 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 5 hr time horizon... +2026-04-29 09:38:56,325 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:57,740 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:57,762 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:58,339 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 18 hr time horizon... +2026-04-29 09:38:58,362 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:38:59,149 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 8 hr time horizon... +2026-04-29 09:38:59,177 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:00,263 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 15 hr time horizon... +2026-04-29 09:39:00,289 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:01,303 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 15 hr time horizon... +2026-04-29 09:39:01,312 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 7 hr time horizon... +2026-04-29 09:39:01,337 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 6 hr time horizon... +2026-04-29 09:39:01,345 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:02,697 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:02,720 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:03,473 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 13 hr time horizon... +2026-04-29 09:39:03,498 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:03,723 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 8 hr time horizon... +2026-04-29 09:39:03,744 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:04,320 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 1 hr time horizon... +2026-04-29 09:39:04,345 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:06,254 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:06,281 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:06,460 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:06,485 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:07,759 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 9 hr time horizon... +2026-04-29 09:39:07,789 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:07,920 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 13 hr time horizon... +2026-04-29 09:39:07,944 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:08,414 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 2 hr time horizon... +2026-04-29 09:39:08,445 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 5 hr time horizon... +2026-04-29 09:39:08,664 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 8 hr time horizon... +2026-04-29 09:39:08,686 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:08,873 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 16 hr time horizon... +2026-04-29 09:39:08,901 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:11,263 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 12 hr time horizon... +2026-04-29 09:39:11,284 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:12,270 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 5 hr time horizon... +2026-04-29 09:39:12,293 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:12,761 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:12,785 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:13,842 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 7 hr time horizon... +2026-04-29 09:39:13,866 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:15,326 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 14 hr time horizon... +2026-04-29 09:39:15,349 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:15,724 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 5 hr time horizon... +2026-04-29 09:39:15,747 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 3 hr time horizon... +2026-04-29 09:39:15,837 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 6 hr time horizon... +2026-04-29 09:39:15,859 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:18,328 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 9 hr time horizon... +2026-04-29 09:39:18,350 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:18,548 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 11 hr time horizon... +2026-04-29 09:39:18,570 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:18,894 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 9 hr time horizon... +2026-04-29 09:39:18,920 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 12 hr time horizon... +2026-04-29 09:39:19,019 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 12 hr time horizon... +2026-04-29 09:39:19,046 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:21,595 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 12 hr time horizon... +2026-04-29 09:39:21,633 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:22,265 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:22,289 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:23,422 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 11 hr time horizon... +2026-04-29 09:39:23,443 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:23,899 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 17 hr time horizon... +2026-04-29 09:39:23,925 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:24,193 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 8 hr time horizon... +2026-04-29 09:39:24,216 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 8 hr time horizon... +2026-04-29 09:39:24,316 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 5 hr time horizon... +2026-04-29 09:39:24,342 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:24,471 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 14 hr time horizon... +2026-04-29 09:39:24,491 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:24,810 - __main__ - INFO - Finished processing 2018-01-09 06:00:00 4 hr time horizon... +2026-04-29 09:39:24,834 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:26,899 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:26,920 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:28,207 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 8 hr time horizon... +2026-04-29 09:39:28,232 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 1 hr time horizon... +2026-04-29 09:39:28,331 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 1 hr time horizon... +2026-04-29 09:39:28,354 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:29,098 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:29,128 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:31,482 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:31,503 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:31,685 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 8 hr time horizon... +2026-04-29 09:39:31,708 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 4 hr time horizon... +2026-04-29 09:39:31,771 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:31,796 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:32,520 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 1 hr time horizon... +2026-04-29 09:39:32,538 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:33,957 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 17 hr time horizon... +2026-04-29 09:39:33,978 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:34,209 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 12 hr time horizon... +2026-04-29 09:39:34,228 - __main__ - INFO - Processing values: 2018-01-11 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:35,174 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 12 hr time horizon... +2026-04-29 09:39:35,194 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:36,714 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 16 hr time horizon... +2026-04-29 09:39:36,734 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:38,390 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 18 hr time horizon... +2026-04-29 09:39:38,425 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:38,950 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 5 hr time horizon... +2026-04-29 09:39:38,971 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:39,098 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 4 hr time horizon... +2026-04-29 09:39:39,117 - __main__ - INFO - Processing values: 2018-01-16 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:39,428 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:39,452 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:39,991 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 8 hr time horizon... +2026-04-29 09:39:40,016 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 11 hr time horizon... +2026-04-29 09:39:40,050 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 5 hr time horizon... +2026-04-29 09:39:40,084 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:40,691 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:40,714 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:42,358 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 13 hr time horizon... +2026-04-29 09:39:42,381 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:42,932 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 1 hr time horizon... +2026-04-29 09:39:42,953 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 12 hr time horizon... +2026-04-29 09:39:43,151 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 10 hr time horizon... +2026-04-29 09:39:43,172 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:44,957 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 4 hr time horizon... +2026-04-29 09:39:44,975 - __main__ - INFO - Processing values: 2018-01-19 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:46,541 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 9 hr time horizon... +2026-04-29 09:39:46,563 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:46,841 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 4 hr time horizon... +2026-04-29 09:39:46,868 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:47,130 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 12 hr time horizon... +2026-04-29 09:39:47,151 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:48,490 - __main__ - INFO - Finished processing 2018-01-11 13:00:00 6 hr time horizon... +2026-04-29 09:39:48,517 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:49,075 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 17 hr time horizon... +2026-04-29 09:39:49,098 - __main__ - INFO - Processing values: 2018-01-26 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:49,941 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 9 hr time horizon... +2026-04-29 09:39:49,971 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:50,375 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 6 hr time horizon... +2026-04-29 09:39:50,394 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:50,926 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 6 hr time horizon... +2026-04-29 09:39:50,946 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:53,304 - __main__ - INFO - Finished processing 2018-01-16 11:00:00 7 hr time horizon... +2026-04-29 09:39:53,328 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:53,418 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 15 hr time horizon... +2026-04-29 09:39:53,441 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 15 hr time horizon... +2026-04-29 09:39:53,487 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 8 hr time horizon... +2026-04-29 09:39:53,509 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:53,696 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 1 hr time horizon... +2026-04-29 09:39:53,719 - __main__ - INFO - Processing values: 2018-01-21 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:54,225 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 11 hr time horizon... +2026-04-29 09:39:54,245 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:54,675 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 2 hr time horizon... +2026-04-29 09:39:54,703 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:54,925 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 6 hr time horizon... +2026-04-29 09:39:54,946 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:57,158 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:57,178 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 10 hr time horizon... +2026-04-29 09:39:57,235 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 14 hr time horizon... +2026-04-29 09:39:57,257 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:39:57,787 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 18 hr time horizon... +2026-04-29 09:39:57,806 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:00,016 - __main__ - INFO - Finished processing 2018-01-19 05:00:00 13 hr time horizon... +2026-04-29 09:40:00,041 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:00,625 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 15 hr time horizon... +2026-04-29 09:40:00,647 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:01,179 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 10 hr time horizon... +2026-04-29 09:40:01,197 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:02,060 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 2 hr time horizon... +2026-04-29 09:40:02,080 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:03,045 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 17 hr time horizon... +2026-04-29 09:40:03,066 - __main__ - INFO - Processing values: 2018-01-04 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:03,791 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 4 hr time horizon... +2026-04-29 09:40:03,809 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:04,250 - __main__ - INFO - Finished processing 2018-01-26 16:00:00 1 hr time horizon... +2026-04-29 09:40:04,270 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:04,757 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 9 hr time horizon... +2026-04-29 09:40:04,779 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:05,093 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 1 hr time horizon... +2026-04-29 09:40:05,115 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:07,965 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:07,972 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 14 hr time horizon... +2026-04-29 09:40:07,994 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 3 hr time horizon... +2026-04-29 09:40:08,001 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:08,637 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 15 hr time horizon... +2026-04-29 09:40:08,662 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:08,872 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 8 hr time horizon... +2026-04-29 09:40:08,892 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:10,120 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 5 hr time horizon... +2026-04-29 09:40:10,136 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 8 hr time horizon... +2026-04-29 09:40:10,142 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 3 hr time horizon... +2026-04-29 09:40:10,159 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:10,340 - __main__ - INFO - Finished processing 2018-01-21 19:00:00 12 hr time horizon... +2026-04-29 09:40:10,363 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:12,385 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 10 hr time horizon... +2026-04-29 09:40:12,408 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:12,987 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 10 hr time horizon... +2026-04-29 09:40:13,016 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:13,309 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 16 hr time horizon... +2026-04-29 09:40:13,336 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:15,565 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 10 hr time horizon... +2026-04-29 09:40:15,581 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 6 hr time horizon... +2026-04-29 09:40:15,591 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 17 hr time horizon... +2026-04-29 09:40:15,606 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:15,768 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 1 hr time horizon... +2026-04-29 09:40:15,788 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:17,066 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 17 hr time horizon... +2026-04-29 09:40:17,087 - __main__ - INFO - Processing values: 2018-01-10 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:18,080 - __main__ - INFO - Finished processing 2018-01-04 13:00:00 6 hr time horizon... +2026-04-29 09:40:18,100 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:19,965 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 17 hr time horizon... +2026-04-29 09:40:19,988 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 10 hr time horizon... +2026-04-29 09:40:20,201 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 8 hr time horizon... +2026-04-29 09:40:20,222 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:20,379 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:20,402 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:21,029 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 15 hr time horizon... +2026-04-29 09:40:21,053 - __main__ - INFO - Processing values: 2018-01-14 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:23,244 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 12 hr time horizon... +2026-04-29 09:40:23,270 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:23,388 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 7 hr time horizon... +2026-04-29 09:40:23,412 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:23,453 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 3 hr time horizon... +2026-04-29 09:40:23,476 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:24,365 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 7 hr time horizon... +2026-04-29 09:40:24,389 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:25,369 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 10 hr time horizon... +2026-04-29 09:40:25,389 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 4 hr time horizon... +2026-04-29 09:40:25,544 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:25,572 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:25,967 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 2 hr time horizon... +2026-04-29 09:40:25,999 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:27,694 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 11 hr time horizon... +2026-04-29 09:40:27,717 - __main__ - INFO - Processing values: 2018-01-24 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:28,628 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 10 hr time horizon... +2026-04-29 09:40:28,655 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 10 hr time horizon... +2026-04-29 09:40:28,671 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:28,696 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:30,875 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 17 hr time horizon... +2026-04-29 09:40:30,898 - __main__ - INFO - Processing values: 2018-01-11 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:31,320 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:31,346 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:31,795 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 17 hr time horizon... +2026-04-29 09:40:31,817 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:33,117 - __main__ - INFO - Finished processing 2018-01-10 11:00:00 16 hr time horizon... +2026-04-29 09:40:33,144 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:33,947 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:33,968 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:35,177 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:35,200 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:35,941 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:35,979 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:36,342 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 10 hr time horizon... +2026-04-29 09:40:36,371 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:37,019 - __main__ - INFO - Finished processing 2018-01-14 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:37,044 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:37,814 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 3 hr time horizon... +2026-04-29 09:40:37,841 - __main__ - INFO - Processing values: 2018-01-28 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:38,854 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:38,878 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:39,151 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:39,178 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 17 hr time horizon... +2026-04-29 09:40:39,185 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 4 hr time horizon... +2026-04-29 09:40:39,206 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:40,837 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 15 hr time horizon... +2026-04-29 09:40:40,864 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:41,489 - __main__ - INFO - Finished processing 2018-01-24 08:00:00 1 hr time horizon... +2026-04-29 09:40:41,510 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:41,838 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 18 hr time horizon... +2026-04-29 09:40:41,861 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 15 hr time horizon... +2026-04-29 09:40:42,068 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 4 hr time horizon... +2026-04-29 09:40:42,093 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:43,137 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 1 hr time horizon... +2026-04-29 09:40:43,156 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:45,749 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 10 hr time horizon... +2026-04-29 09:40:45,775 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:45,970 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 3 hr time horizon... +2026-04-29 09:40:45,993 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:46,184 - __main__ - INFO - Finished processing 2018-01-11 15:00:00 14 hr time horizon... +2026-04-29 09:40:46,220 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:46,923 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 3 hr time horizon... +2026-04-29 09:40:46,942 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:47,861 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 5 hr time horizon... +2026-04-29 09:40:47,882 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:49,025 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:49,056 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:50,929 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 13 hr time horizon... +2026-04-29 09:40:50,951 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 14 hr time horizon... +2026-04-29 09:40:50,965 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 11 hr time horizon... +2026-04-29 09:40:50,987 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:51,491 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 14 hr time horizon... +2026-04-29 09:40:51,517 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:52,263 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:52,284 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:53,273 - __main__ - INFO - Finished processing 2018-01-28 02:00:00 4 hr time horizon... +2026-04-29 09:40:53,300 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:54,722 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:54,746 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 18 hr time horizon... +2026-04-29 09:40:54,810 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:54,837 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:55,522 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 7 hr time horizon... +2026-04-29 09:40:55,546 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:40:56,357 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:56,378 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:56,982 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 16 hr time horizon... +2026-04-29 09:40:57,007 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:57,227 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 15 hr time horizon... +2026-04-29 09:40:57,248 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:57,644 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 16 hr time horizon... +2026-04-29 09:40:57,667 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:40:58,160 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 3 hr time horizon... +2026-04-29 09:40:58,185 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:00,783 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 10 hr time horizon... +2026-04-29 09:41:00,800 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:01,099 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:01,122 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:01,306 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 16 hr time horizon... +2026-04-29 09:41:01,327 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:01,708 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 11 hr time horizon... +2026-04-29 09:41:01,727 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:01,951 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 12 hr time horizon... +2026-04-29 09:41:01,973 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:04,009 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 7 hr time horizon... +2026-04-29 09:41:04,030 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:04,832 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 14 hr time horizon... +2026-04-29 09:41:04,857 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:05,319 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 10 hr time horizon... +2026-04-29 09:41:05,339 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:05,469 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 4 hr time horizon... +2026-04-29 09:41:05,499 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:07,901 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:07,934 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:08,571 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 10 hr time horizon... +2026-04-29 09:41:08,593 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:08,775 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 18 hr time horizon... +2026-04-29 09:41:08,796 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:09,138 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 5 hr time horizon... +2026-04-29 09:41:09,163 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:09,986 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:10,011 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:10,908 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 1 hr time horizon... +2026-04-29 09:41:10,929 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:11,950 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 10 hr time horizon... +2026-04-29 09:41:11,970 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:12,866 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 6 hr time horizon... +2026-04-29 09:41:12,889 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:13,820 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 12 hr time horizon... +2026-04-29 09:41:13,843 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:16,266 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 8 hr time horizon... +2026-04-29 09:41:16,289 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 3 hr time horizon... +2026-04-29 09:41:16,431 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 4 hr time horizon... +2026-04-29 09:41:16,465 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 4 hr time horizon... +2026-04-29 09:41:16,504 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:16,524 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 5 hr time horizon... +2026-04-29 09:41:16,574 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 17 hr time horizon... +2026-04-29 09:41:16,598 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:17,474 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 13 hr time horizon... +2026-04-29 09:41:17,502 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:20,048 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 3 hr time horizon... +2026-04-29 09:41:20,068 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:20,374 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 2 hr time horizon... +2026-04-29 09:41:20,394 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:20,657 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:20,680 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:22,291 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 6 hr time horizon... +2026-04-29 09:41:22,313 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:22,697 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 2 hr time horizon... +2026-04-29 09:41:22,718 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:23,222 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:23,248 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:23,568 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 11 hr time horizon... +2026-04-29 09:41:23,596 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:24,161 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 7 hr time horizon... +2026-04-29 09:41:24,184 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:24,248 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 15 hr time horizon... +2026-04-29 09:41:24,268 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:24,772 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 5 hr time horizon... +2026-04-29 09:41:24,792 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:25,221 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 1 hr time horizon... +2026-04-29 09:41:25,242 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:26,496 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 18 hr time horizon... +2026-04-29 09:41:26,518 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:28,549 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 10 hr time horizon... +2026-04-29 09:41:28,571 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:28,716 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 17 hr time horizon... +2026-04-29 09:41:28,738 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:30,424 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 5 hr time horizon... +2026-04-29 09:41:30,445 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:30,476 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 3 hr time horizon... +2026-04-29 09:41:30,495 - __main__ - INFO - Processing values: 2018-01-11 13:00:00 11 hr time horizon... +2026-04-29 09:41:30,647 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:30,670 - __main__ - INFO - Processing values: 2018-01-09 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:31,261 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 12 hr time horizon... +2026-04-29 09:41:31,283 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 8 hr time horizon... +2026-04-29 09:41:31,398 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 4 hr time horizon... +2026-04-29 09:41:31,416 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:35,015 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 12 hr time horizon... +2026-04-29 09:41:35,052 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:35,526 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:35,547 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:36,039 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 4 hr time horizon... +2026-04-29 09:41:36,058 - __main__ - INFO - Processing values: 2018-01-15 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:36,267 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 6 hr time horizon... +2026-04-29 09:41:36,287 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:37,557 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 11 hr time horizon... +2026-04-29 09:41:37,578 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:37,673 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 8 hr time horizon... +2026-04-29 09:41:37,694 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:38,116 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 4 hr time horizon... +2026-04-29 09:41:38,149 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:38,232 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 14 hr time horizon... +2026-04-29 09:41:38,256 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:40,446 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 5 hr time horizon... +2026-04-29 09:41:40,467 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 9 hr time horizon... +2026-04-29 09:41:40,685 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 5 hr time horizon... +2026-04-29 09:41:40,712 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:40,784 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 10 hr time horizon... +2026-04-29 09:41:40,804 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:42,528 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:42,551 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:45,256 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 18 hr time horizon... +2026-04-29 09:41:45,283 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:45,357 - __main__ - INFO - Finished processing 2018-01-11 13:00:00 11 hr time horizon... +2026-04-29 09:41:45,386 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 12 hr time horizon... +2026-04-29 09:41:45,411 - __main__ - INFO - Finished processing 2018-01-09 16:00:00 11 hr time horizon... +2026-04-29 09:41:45,440 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:45,501 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 5 hr time horizon... +2026-04-29 09:41:45,519 - __main__ - INFO - Processing values: 2018-01-08 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:46,069 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 8 hr time horizon... +2026-04-29 09:41:46,091 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 14 hr time horizon... +2026-04-29 09:41:46,223 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 15 hr time horizon... +2026-04-29 09:41:46,243 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:49,678 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:41:49,711 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:50,319 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 3 hr time horizon... +2026-04-29 09:41:50,339 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:50,590 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 11 hr time horizon... +2026-04-29 09:41:50,614 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:51,091 - __main__ - INFO - Finished processing 2018-01-15 17:00:00 12 hr time horizon... +2026-04-29 09:41:51,114 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:51,420 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 1 hr time horizon... +2026-04-29 09:41:51,443 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:52,751 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 17 hr time horizon... +2026-04-29 09:41:52,771 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:52,878 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 7 hr time horizon... +2026-04-29 09:41:52,898 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:53,664 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:53,685 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:54,672 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 1 hr time horizon... +2026-04-29 09:41:54,695 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:56,468 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 9 hr time horizon... +2026-04-29 09:41:56,494 - __main__ - INFO - Processing values: 2018-01-05 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:56,611 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 2 hr time horizon... +2026-04-29 09:41:56,630 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:57,582 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 17 hr time horizon... +2026-04-29 09:41:57,608 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:41:58,609 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 2 hr time horizon... +2026-04-29 09:41:58,629 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:01,346 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 12 hr time horizon... +2026-04-29 09:42:01,367 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 12 hr time horizon... +2026-04-29 09:42:01,389 - __main__ - INFO - Finished processing 2018-01-08 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:01,426 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 17 hr time horizon... +2026-04-29 09:42:01,480 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 1 hr time horizon... +2026-04-29 09:42:01,504 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:01,554 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 14 hr time horizon... +2026-04-29 09:42:01,575 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:03,938 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 1 hr time horizon... +2026-04-29 09:42:03,958 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:04,533 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 13 hr time horizon... +2026-04-29 09:42:04,560 - __main__ - INFO - Processing values: 2018-01-28 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:04,925 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 13 hr time horizon... +2026-04-29 09:42:04,947 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:05,613 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 2 hr time horizon... +2026-04-29 09:42:05,635 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:05,854 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:05,879 - __main__ - INFO - Processing values: 2018-01-20 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:06,327 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 15 hr time horizon... +2026-04-29 09:42:06,349 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:06,597 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 1 hr time horizon... +2026-04-29 09:42:06,615 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:07,074 - __main__ - INFO - No valid message found: PosixPath('/home/kperry/data/hrrr/20180126/subset_3569165b__hrrr.t10z.wrfprsf17.grib2') +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:07,652 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 9 hr time horizon... +2026-04-29 09:42:07,671 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:08,610 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:08,634 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 11 hr time horizon... +2026-04-29 09:42:08,679 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 14 hr time horizon... +2026-04-29 09:42:08,699 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:09,252 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 7 hr time horizon... +2026-04-29 09:42:09,273 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:10,732 - __main__ - INFO - Finished processing 2018-01-05 02:00:00 5 hr time horizon... +2026-04-29 09:42:10,753 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:11,265 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 9 hr time horizon... +2026-04-29 09:42:11,285 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:11,998 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 7 hr time horizon... +2026-04-29 09:42:12,015 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 1 hr time horizon... +2026-04-29 09:42:12,074 - __main__ - INFO - Download failed for {date} {time_horizon} hr time horizon... +2026-04-29 09:42:12,075 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:12,542 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 14 hr time horizon... +2026-04-29 09:42:12,563 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:14,955 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 12 hr time horizon... +2026-04-29 09:42:14,976 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:15,645 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 12 hr time horizon... +2026-04-29 09:42:15,668 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:15,856 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 17 hr time horizon... +2026-04-29 09:42:15,882 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:16,401 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 17 hr time horizon... +2026-04-29 09:42:16,427 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:18,025 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 14 hr time horizon... +2026-04-29 09:42:18,048 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:19,141 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 5 hr time horizon... +2026-04-29 09:42:19,165 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:19,377 - __main__ - INFO - Finished processing 2018-01-28 02:00:00 11 hr time horizon... +2026-04-29 09:42:19,412 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:19,668 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 2 hr time horizon... +2026-04-29 09:42:19,693 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:20,531 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 9 hr time horizon... +2026-04-29 09:42:20,549 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:20,811 - __main__ - INFO - Finished processing 2018-01-20 22:00:00 2 hr time horizon... +2026-04-29 09:42:20,832 - __main__ - INFO - Processing values: 2018-01-26 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:22,176 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 3 hr time horizon... +2026-04-29 09:42:22,197 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:23,394 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 2 hr time horizon... +2026-04-29 09:42:23,418 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:24,320 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 10 hr time horizon... +2026-04-29 09:42:24,342 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:25,780 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 16 hr time horizon... +2026-04-29 09:42:25,808 - __main__ - INFO - Processing values: 2018-01-07 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:26,109 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 17 hr time horizon... +2026-04-29 09:42:26,131 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:27,093 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:27,116 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 6 hr time horizon... +2026-04-29 09:42:27,152 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 11 hr time horizon... +2026-04-29 09:42:27,176 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 11 hr time horizon... +2026-04-29 09:42:27,411 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 14 hr time horizon... +2026-04-29 09:42:27,435 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:28,862 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 15 hr time horizon... +2026-04-29 09:42:28,891 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:30,550 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 11 hr time horizon... +2026-04-29 09:42:30,572 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:31,467 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 1 hr time horizon... +2026-04-29 09:42:31,489 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:31,817 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:31,846 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:32,484 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 5 hr time horizon... +2026-04-29 09:42:32,519 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:33,616 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 18 hr time horizon... +2026-04-29 09:42:33,641 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:34,831 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 5 hr time horizon... +2026-04-29 09:42:34,863 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:35,378 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 17 hr time horizon... +2026-04-29 09:42:35,401 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 12 hr time horizon... +2026-04-29 09:42:35,494 - __main__ - INFO - Finished processing 2018-01-26 21:00:00 3 hr time horizon... +2026-04-29 09:42:35,518 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:35,669 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 17 hr time horizon... +2026-04-29 09:42:35,691 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:37,246 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 18 hr time horizon... +2026-04-29 09:42:37,267 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:38,651 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 9 hr time horizon... +2026-04-29 09:42:38,672 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:40,165 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 7 hr time horizon... +2026-04-29 09:42:40,186 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:40,576 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 11 hr time horizon... +2026-04-29 09:42:40,595 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:41,208 - __main__ - INFO - Finished processing 2018-01-07 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:41,235 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:41,687 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 8 hr time horizon... +2026-04-29 09:42:41,712 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:41,992 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 6 hr time horizon... +2026-04-29 09:42:42,012 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:42,214 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 11 hr time horizon... +2026-04-29 09:42:42,239 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:42,998 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 10 hr time horizon... +2026-04-29 09:42:43,020 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:43,384 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 4 hr time horizon... +2026-04-29 09:42:43,404 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:46,142 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:46,165 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:46,801 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 16 hr time horizon... +2026-04-29 09:42:46,829 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:47,514 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 8 hr time horizon... +2026-04-29 09:42:47,534 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:47,652 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:47,675 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:48,642 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 16 hr time horizon... +2026-04-29 09:42:48,664 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:49,454 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 12 hr time horizon... +2026-04-29 09:42:49,478 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:49,564 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:49,593 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:50,128 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 5 hr time horizon... +2026-04-29 09:42:50,148 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:50,661 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 8 hr time horizon... +2026-04-29 09:42:50,679 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:51,882 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 11 hr time horizon... +2026-04-29 09:42:51,903 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:53,707 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:53,738 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:55,899 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 17 hr time horizon... +2026-04-29 09:42:55,924 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:42:56,694 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:56,719 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 15 hr time horizon... +2026-04-29 09:42:56,814 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 5 hr time horizon... +2026-04-29 09:42:56,833 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:59,598 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:42:59,618 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:00,133 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 11 hr time horizon... +2026-04-29 09:43:00,150 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:00,691 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:00,711 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 18 hr time horizon... +2026-04-29 09:43:00,812 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 5 hr time horizon... +2026-04-29 09:43:00,831 - __main__ - INFO - Processing values: 2018-01-21 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:00,955 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 6 hr time horizon... +2026-04-29 09:43:00,977 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:01,618 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 12 hr time horizon... +2026-04-29 09:43:01,638 - __main__ - INFO - Processing values: 2018-01-05 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:03,262 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:03,284 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:03,909 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 7 hr time horizon... +2026-04-29 09:43:03,936 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:43:04,461 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:04,486 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:05,576 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 14 hr time horizon... +2026-04-29 09:43:05,602 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:06,467 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 1 hr time horizon... +2026-04-29 09:43:06,489 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:08,338 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 13 hr time horizon... +2026-04-29 09:43:08,360 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:09,726 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 16 hr time horizon... +2026-04-29 09:43:09,746 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:10,187 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 15 hr time horizon... +2026-04-29 09:43:10,209 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:12,902 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 3 hr time horizon... +2026-04-29 09:43:12,922 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:13,057 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 12 hr time horizon... +2026-04-29 09:43:13,083 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:13,582 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 18 hr time horizon... +2026-04-29 09:43:13,602 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:13,955 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 1 hr time horizon... +2026-04-29 09:43:13,977 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:14,553 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 4 hr time horizon... +2026-04-29 09:43:14,573 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:14,911 - __main__ - INFO - Finished processing 2018-01-05 07:00:00 13 hr time horizon... +2026-04-29 09:43:14,935 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:15,842 - __main__ - INFO - Finished processing 2018-01-21 06:00:00 13 hr time horizon... +2026-04-29 09:43:15,865 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:17,363 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 11 hr time horizon... +2026-04-29 09:43:17,390 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:17,661 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 3 hr time horizon... +2026-04-29 09:43:17,685 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:17,937 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:17,960 - __main__ - INFO - Processing values: 2018-01-11 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:19,774 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 7 hr time horizon... +2026-04-29 09:43:19,797 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:20,275 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 11 hr time horizon... +2026-04-29 09:43:20,300 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:20,852 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 7 hr time horizon... +2026-04-29 09:43:20,878 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:43:21,950 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:21,982 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:22,462 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 6 hr time horizon... +2026-04-29 09:43:22,487 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:22,606 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 14 hr time horizon... +2026-04-29 09:43:22,628 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:24,860 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 3 hr time horizon... +2026-04-29 09:43:24,880 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:25,123 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 16 hr time horizon... +2026-04-29 09:43:25,147 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:26,793 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 9 hr time horizon... +2026-04-29 09:43:26,817 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:27,021 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:27,045 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:27,755 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 13 hr time horizon... +2026-04-29 09:43:27,797 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:29,334 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:29,359 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:29,472 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 18 hr time horizon... +2026-04-29 09:43:29,497 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:30,822 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 17 hr time horizon... +2026-04-29 09:43:30,853 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:31,022 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 15 hr time horizon... +2026-04-29 09:43:31,045 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:31,685 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:31,706 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:32,265 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 13 hr time horizon... +2026-04-29 09:43:32,287 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:33,144 - __main__ - INFO - Finished processing 2018-01-11 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:33,168 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:34,578 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 7 hr time horizon... +2026-04-29 09:43:34,598 - __main__ - INFO - Processing values: 2018-01-27 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:35,054 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:35,079 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:35,624 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 15 hr time horizon... +2026-04-29 09:43:35,645 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:35,879 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 14 hr time horizon... +2026-04-29 09:43:35,900 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:36,810 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 14 hr time horizon... +2026-04-29 09:43:36,830 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:37,533 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:37,555 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:37,613 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 2 hr time horizon... +2026-04-29 09:43:37,636 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:39,558 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 7 hr time horizon... +2026-04-29 09:43:39,579 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 12 hr time horizon... +2026-04-29 09:43:39,603 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:39,626 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:41,062 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 13 hr time horizon... +2026-04-29 09:43:41,080 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:42,347 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 18 hr time horizon... +2026-04-29 09:43:42,372 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:43,780 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 3 hr time horizon... +2026-04-29 09:43:43,800 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:44,811 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 2 hr time horizon... +2026-04-29 09:43:44,832 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 18 hr time horizon... +2026-04-29 09:43:44,914 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:44,933 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:45,547 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:45,576 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:45,777 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 13 hr time horizon... +2026-04-29 09:43:45,800 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:48,094 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:48,115 - __main__ - INFO - Processing values: 2018-01-09 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:48,371 - __main__ - INFO - Finished processing 2018-01-14 21:00:00 3 hr time horizon... +2026-04-29 09:43:48,390 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:48,885 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 5 hr time horizon... +2026-04-29 09:43:48,908 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:49,643 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 14 hr time horizon... +2026-04-29 09:43:49,668 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:51,012 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 14 hr time horizon... +2026-04-29 09:43:51,031 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:51,472 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 3 hr time horizon... +2026-04-29 09:43:51,491 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:52,001 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 16 hr time horizon... +2026-04-29 09:43:52,025 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:52,751 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 12 hr time horizon... +2026-04-29 09:43:52,773 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:56,115 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 13 hr time horizon... +2026-04-29 09:43:56,138 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:57,130 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 5 hr time horizon... +2026-04-29 09:43:57,153 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:57,562 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 16 hr time horizon... +2026-04-29 09:43:57,584 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:58,079 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 4 hr time horizon... +2026-04-29 09:43:58,106 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:58,585 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:58,615 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:43:59,468 - __main__ - INFO - Finished processing 2018-01-27 01:00:00 6 hr time horizon... +2026-04-29 09:43:59,491 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:00,153 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 7 hr time horizon... +2026-04-29 09:44:00,178 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:00,422 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 5 hr time horizon... +2026-04-29 09:44:00,445 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:01,464 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 13 hr time horizon... +2026-04-29 09:44:01,484 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:02,457 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 6 hr time horizon... +2026-04-29 09:44:02,481 - __main__ - INFO - Processing values: 2018-01-26 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:02,654 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 4 hr time horizon... +2026-04-29 09:44:02,679 - __main__ - INFO - Processing values: 2018-01-05 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:02,876 - __main__ - INFO - Finished processing 2018-01-09 06:00:00 9 hr time horizon... +2026-04-29 09:44:02,901 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:04,253 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:04,277 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:04,898 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 10 hr time horizon... +2026-04-29 09:44:04,923 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:05,506 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 6 hr time horizon... +2026-04-29 09:44:05,527 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:06,404 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 17 hr time horizon... +2026-04-29 09:44:06,427 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:07,177 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 2 hr time horizon... +2026-04-29 09:44:07,197 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:08,138 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 6 hr time horizon... +2026-04-29 09:44:08,159 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:11,482 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:11,501 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:11,896 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 4 hr time horizon... +2026-04-29 09:44:11,915 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 9 hr time horizon... +2026-04-29 09:44:12,107 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 10 hr time horizon... +2026-04-29 09:44:12,128 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:12,284 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 2 hr time horizon... +2026-04-29 09:44:12,309 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:12,821 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 3 hr time horizon... +2026-04-29 09:44:12,838 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:14,742 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:14,766 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:15,393 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 14 hr time horizon... +2026-04-29 09:44:15,416 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:15,537 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 12 hr time horizon... +2026-04-29 09:44:15,559 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:16,681 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 1 hr time horizon... +2026-04-29 09:44:16,700 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:17,180 - __main__ - INFO - Finished processing 2018-01-26 16:00:00 3 hr time horizon... +2026-04-29 09:44:17,203 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:17,350 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:17,375 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:17,996 - __main__ - INFO - Finished processing 2018-01-05 02:00:00 18 hr time horizon... +2026-04-29 09:44:18,021 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:18,908 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 18 hr time horizon... +2026-04-29 09:44:18,933 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:19,871 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 11 hr time horizon... +2026-04-29 09:44:19,891 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 17 hr time horizon... +2026-04-29 09:44:19,906 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 2 hr time horizon... +2026-04-29 09:44:19,926 - __main__ - INFO - Processing values: 2018-01-14 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:20,463 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 7 hr time horizon... +2026-04-29 09:44:20,485 - __main__ - INFO - Processing values: 2018-01-22 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:22,466 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 13 hr time horizon... +2026-04-29 09:44:22,486 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:23,801 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 8 hr time horizon... +2026-04-29 09:44:23,826 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:26,777 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 9 hr time horizon... +2026-04-29 09:44:26,804 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 5 hr time horizon... +2026-04-29 09:44:26,862 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 1 hr time horizon... +2026-04-29 09:44:26,883 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:26,957 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 6 hr time horizon... +2026-04-29 09:44:26,981 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:27,028 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 17 hr time horizon... +2026-04-29 09:44:27,051 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:27,941 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 1 hr time horizon... +2026-04-29 09:44:27,962 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:29,721 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 10 hr time horizon... +2026-04-29 09:44:29,742 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:29,965 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 15 hr time horizon... +2026-04-29 09:44:29,987 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:30,870 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 4 hr time horizon... +2026-04-29 09:44:30,893 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:31,863 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 11 hr time horizon... +2026-04-29 09:44:31,887 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:31,950 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 9 hr time horizon... +2026-04-29 09:44:31,975 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 12 hr time horizon... +2026-04-29 09:44:31,977 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:32,006 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:33,250 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 6 hr time horizon... +2026-04-29 09:44:33,273 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:33,735 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 4 hr time horizon... +2026-04-29 09:44:33,756 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:33,918 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 16 hr time horizon... +2026-04-29 09:44:33,943 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:34,216 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:34,237 - __main__ - INFO - Processing values: 2018-01-04 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:34,678 - __main__ - INFO - Finished processing 2018-01-14 09:00:00 15 hr time horizon... +2026-04-29 09:44:34,699 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:35,532 - __main__ - INFO - Finished processing 2018-01-22 12:00:00 10 hr time horizon... +2026-04-29 09:44:35,552 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:37,362 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 1 hr time horizon... +2026-04-29 09:44:37,379 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 13 hr time horizon... +2026-04-29 09:44:37,549 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 6 hr time horizon... +2026-04-29 09:44:37,575 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:40,945 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 10 hr time horizon... +2026-04-29 09:44:40,969 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:41,534 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 12 hr time horizon... +2026-04-29 09:44:41,552 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:41,820 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:41,842 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:43,744 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 5 hr time horizon... +2026-04-29 09:44:43,769 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:44,299 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:44,327 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 9 hr time horizon... +2026-04-29 09:44:44,345 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 6 hr time horizon... +2026-04-29 09:44:44,365 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:44,854 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 15 hr time horizon... +2026-04-29 09:44:44,878 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:45,733 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:45,765 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:47,302 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 9 hr time horizon... +2026-04-29 09:44:47,324 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:47,375 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 17 hr time horizon... +2026-04-29 09:44:47,397 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:47,998 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 11 hr time horizon... +2026-04-29 09:44:48,027 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:48,085 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:48,108 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:48,740 - __main__ - INFO - Finished processing 2018-01-04 22:00:00 4 hr time horizon... +2026-04-29 09:44:48,760 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:48,918 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 15 hr time horizon... +2026-04-29 09:44:48,945 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:49,466 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 13 hr time horizon... +2026-04-29 09:44:49,491 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:50,376 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 13 hr time horizon... +2026-04-29 09:44:50,398 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:50,987 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:51,016 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:52,401 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 13 hr time horizon... +2026-04-29 09:44:52,420 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 11 hr time horizon... +2026-04-29 09:44:52,933 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 3 hr time horizon... +2026-04-29 09:44:52,956 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:56,937 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 9 hr time horizon... +2026-04-29 09:44:56,959 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:57,042 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 3 hr time horizon... +2026-04-29 09:44:57,067 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:57,622 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 4 hr time horizon... +2026-04-29 09:44:57,648 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:59,226 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 5 hr time horizon... +2026-04-29 09:44:59,246 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:44:59,750 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 3 hr time horizon... +2026-04-29 09:44:59,770 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:00,268 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 9 hr time horizon... +2026-04-29 09:45:00,293 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:00,674 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:00,695 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:00,880 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 14 hr time horizon... +2026-04-29 09:45:00,903 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:01,823 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 4 hr time horizon... +2026-04-29 09:45:01,844 - __main__ - INFO - Processing values: 2018-01-18 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:02,322 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 1 hr time horizon... +2026-04-29 09:45:02,341 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:02,973 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 13 hr time horizon... +2026-04-29 09:45:02,995 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:03,232 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 18 hr time horizon... +2026-04-29 09:45:03,259 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:03,700 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:03,726 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:05,106 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 5 hr time horizon... +2026-04-29 09:45:05,129 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:05,194 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:05,217 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:06,738 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 11 hr time horizon... +2026-04-29 09:45:06,760 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:06,903 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 8 hr time horizon... +2026-04-29 09:45:06,922 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 17 hr time horizon... +2026-04-29 09:45:07,375 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 5 hr time horizon... +2026-04-29 09:45:07,394 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:10,592 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 13 hr time horizon... +2026-04-29 09:45:10,614 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:10,905 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 17 hr time horizon... +2026-04-29 09:45:10,930 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:12,873 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 14 hr time horizon... +2026-04-29 09:45:12,899 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:13,474 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 18 hr time horizon... +2026-04-29 09:45:13,495 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:14,173 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:14,195 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:15,237 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 16 hr time horizon... +2026-04-29 09:45:15,261 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:15,878 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:15,902 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:16,530 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 15 hr time horizon... +2026-04-29 09:45:16,552 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:16,655 - __main__ - INFO - Finished processing 2018-01-18 03:00:00 6 hr time horizon... +2026-04-29 09:45:16,678 - __main__ - INFO - Processing values: 2018-01-15 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:18,201 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 7 hr time horizon... +2026-04-29 09:45:18,224 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:18,369 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 12 hr time horizon... +2026-04-29 09:45:18,391 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:18,868 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 14 hr time horizon... +2026-04-29 09:45:18,885 - __main__ - INFO - Processing values: 2018-01-29 15:00:00 17 hr time horizon... +2026-04-29 09:45:19,052 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 7 hr time horizon... +2026-04-29 09:45:19,086 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:20,141 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 5 hr time horizon... +2026-04-29 09:45:20,161 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:20,287 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 18 hr time horizon... +2026-04-29 09:45:20,316 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:21,929 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 6 hr time horizon... +2026-04-29 09:45:21,953 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 8 hr time horizon... +2026-04-29 09:45:22,174 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 18 hr time horizon... +2026-04-29 09:45:22,195 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:22,453 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 17 hr time horizon... +2026-04-29 09:45:22,474 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:23,877 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 13 hr time horizon... +2026-04-29 09:45:23,905 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:26,808 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 3 hr time horizon... +2026-04-29 09:45:26,826 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 2 hr time horizon... +2026-04-29 09:45:26,874 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 5 hr time horizon... +2026-04-29 09:45:26,895 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:28,865 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 12 hr time horizon... +2026-04-29 09:45:28,890 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:29,490 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 14 hr time horizon... +2026-04-29 09:45:29,517 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:30,781 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 3 hr time horizon... +2026-04-29 09:45:30,798 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 13 hr time horizon... +2026-04-29 09:45:30,806 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 1 hr time horizon... +2026-04-29 09:45:30,822 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:30,997 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 15 hr time horizon... +2026-04-29 09:45:31,028 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:31,705 - __main__ - INFO - Finished processing 2018-01-15 23:00:00 3 hr time horizon... +2026-04-29 09:45:31,724 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:33,060 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 15 hr time horizon... +2026-04-29 09:45:33,088 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:34,498 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 9 hr time horizon... +2026-04-29 09:45:34,526 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:34,750 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:34,773 - __main__ - INFO - Processing values: 2018-01-03 09:00:00 16 hr time horizon... +2026-04-29 09:45:34,791 - __main__ - INFO - Finished processing 2018-01-29 15:00:00 17 hr time horizon... +2026-04-29 09:45:34,815 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:35,280 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 17 hr time horizon... +2026-04-29 09:45:35,305 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:36,174 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:36,204 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 7 hr time horizon... +2026-04-29 09:45:36,258 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 17 hr time horizon... +2026-04-29 09:45:36,281 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:38,264 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 8 hr time horizon... +2026-04-29 09:45:38,296 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 17 hr time horizon... +2026-04-29 09:45:38,351 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 3 hr time horizon... +2026-04-29 09:45:38,377 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:38,815 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 10 hr time horizon... +2026-04-29 09:45:38,836 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:39,585 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 13 hr time horizon... +2026-04-29 09:45:39,609 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:41,387 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 1 hr time horizon... +2026-04-29 09:45:41,408 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:42,513 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:42,540 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:43,401 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 2 hr time horizon... +2026-04-29 09:45:43,419 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:43,899 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 13 hr time horizon... +2026-04-29 09:45:43,920 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:45,501 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 1 hr time horizon... +2026-04-29 09:45:45,520 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:46,558 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 15 hr time horizon... +2026-04-29 09:45:46,582 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:46,812 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 9 hr time horizon... +2026-04-29 09:45:46,831 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 18 hr time horizon... +2026-04-29 09:45:46,877 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 11 hr time horizon... +2026-04-29 09:45:46,902 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:48,827 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 11 hr time horizon... +2026-04-29 09:45:48,852 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:49,842 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 6 hr time horizon... +2026-04-29 09:45:49,871 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:50,550 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 8 hr time horizon... +2026-04-29 09:45:50,573 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:50,748 - __main__ - INFO - Finished processing 2018-01-03 09:00:00 16 hr time horizon... +2026-04-29 09:45:50,776 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:51,404 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 6 hr time horizon... +2026-04-29 09:45:51,427 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 2 hr time horizon... +2026-04-29 09:45:51,461 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 16 hr time horizon... +2026-04-29 09:45:51,482 - __main__ - INFO - Processing values: 2018-01-24 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:51,667 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 7 hr time horizon... +2026-04-29 09:45:51,687 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:54,078 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:54,105 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:54,234 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 12 hr time horizon... +2026-04-29 09:45:54,263 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:55,197 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:55,222 - __main__ - INFO - Processing values: 2018-01-24 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:55,290 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 5 hr time horizon... +2026-04-29 09:45:55,311 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:56,281 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 15 hr time horizon... +2026-04-29 09:45:56,303 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:58,251 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 16 hr time horizon... +2026-04-29 09:45:58,275 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:58,617 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 11 hr time horizon... +2026-04-29 09:45:58,637 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:45:59,106 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 17 hr time horizon... +2026-04-29 09:45:59,130 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:00,999 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 12 hr time horizon... +2026-04-29 09:46:01,020 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:02,266 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 18 hr time horizon... +2026-04-29 09:46:02,289 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 18 hr time horizon... +2026-04-29 09:46:02,366 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 2 hr time horizon... +2026-04-29 09:46:02,385 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:02,603 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 12 hr time horizon... +2026-04-29 09:46:02,625 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:04,802 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 4 hr time horizon... +2026-04-29 09:46:04,823 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:05,891 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 1 hr time horizon... +2026-04-29 09:46:05,914 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:06,084 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 10 hr time horizon... +2026-04-29 09:46:06,111 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:06,456 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 9 hr time horizon... +2026-04-29 09:46:06,485 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:06,617 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 1 hr time horizon... +2026-04-29 09:46:06,636 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:07,077 - __main__ - INFO - Finished processing 2018-01-24 17:00:00 15 hr time horizon... +2026-04-29 09:46:07,105 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:08,025 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 2 hr time horizon... +2026-04-29 09:46:08,053 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:09,549 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 16 hr time horizon... +2026-04-29 09:46:09,573 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:09,748 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 8 hr time horizon... +2026-04-29 09:46:09,770 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:10,467 - __main__ - INFO - Finished processing 2018-01-24 12:00:00 15 hr time horizon... +2026-04-29 09:46:10,495 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:11,016 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:11,037 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:12,463 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 4 hr time horizon... +2026-04-29 09:46:12,497 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:13,524 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 5 hr time horizon... +2026-04-29 09:46:13,529 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 9 hr time horizon... +2026-04-29 09:46:13,547 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 7 hr time horizon... +2026-04-29 09:46:13,553 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:14,419 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 14 hr time horizon... +2026-04-29 09:46:14,452 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:16,938 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 16 hr time horizon... +2026-04-29 09:46:16,960 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:17,466 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 1 hr time horizon... +2026-04-29 09:46:17,484 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:17,626 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 18 hr time horizon... +2026-04-29 09:46:17,648 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:18,326 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 16 hr time horizon... +2026-04-29 09:46:18,350 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:20,049 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 5 hr time horizon... +2026-04-29 09:46:20,071 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:20,718 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:20,739 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:21,027 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 16 hr time horizon... +2026-04-29 09:46:21,048 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:21,441 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 15 hr time horizon... +2026-04-29 09:46:21,464 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:22,221 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 8 hr time horizon... +2026-04-29 09:46:22,242 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 18 hr time horizon... +2026-04-29 09:46:22,362 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 13 hr time horizon... +2026-04-29 09:46:22,383 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:23,490 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 14 hr time horizon... +2026-04-29 09:46:23,511 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:25,778 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 16 hr time horizon... +2026-04-29 09:46:25,799 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:26,055 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 5 hr time horizon... +2026-04-29 09:46:26,080 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:26,483 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 7 hr time horizon... +2026-04-29 09:46:26,504 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:27,405 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 2 hr time horizon... +2026-04-29 09:46:27,427 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:27,740 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 1 hr time horizon... +2026-04-29 09:46:27,760 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:29,070 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 12 hr time horizon... +2026-04-29 09:46:29,101 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:30,393 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 7 hr time horizon... +2026-04-29 09:46:30,424 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:31,287 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 16 hr time horizon... +2026-04-29 09:46:31,307 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:33,169 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 12 hr time horizon... +2026-04-29 09:46:33,209 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:33,428 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 5 hr time horizon... +2026-04-29 09:46:33,453 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:33,610 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 4 hr time horizon... +2026-04-29 09:46:33,634 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:34,834 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 8 hr time horizon... +2026-04-29 09:46:34,858 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:35,105 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 13 hr time horizon... +2026-04-29 09:46:35,132 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:35,998 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 1 hr time horizon... +2026-04-29 09:46:36,022 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:36,162 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 2 hr time horizon... +2026-04-29 09:46:36,184 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:36,886 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:36,911 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:37,001 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 18 hr time horizon... +2026-04-29 09:46:37,023 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:37,576 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 3 hr time horizon... +2026-04-29 09:46:37,599 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:39,012 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 10 hr time horizon... +2026-04-29 09:46:39,036 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:41,217 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 5 hr time horizon... +2026-04-29 09:46:41,219 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 18 hr time horizon... +2026-04-29 09:46:41,242 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:41,249 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:41,772 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 11 hr time horizon... +2026-04-29 09:46:41,796 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:43,053 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 3 hr time horizon... +2026-04-29 09:46:43,075 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 15 hr time horizon... +2026-04-29 09:46:43,080 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 9 hr time horizon... +2026-04-29 09:46:43,100 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:45,019 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 8 hr time horizon... +2026-04-29 09:46:45,041 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:47,137 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 13 hr time horizon... +2026-04-29 09:46:47,157 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 12 hr time horizon... +2026-04-29 09:46:47,240 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 7 hr time horizon... +2026-04-29 09:46:47,267 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:48,553 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:48,573 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:48,692 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 17 hr time horizon... +2026-04-29 09:46:48,714 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:50,460 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 18 hr time horizon... +2026-04-29 09:46:50,486 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:50,495 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 6 hr time horizon... +2026-04-29 09:46:50,522 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:51,111 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 1 hr time horizon... +2026-04-29 09:46:51,135 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:51,917 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 7 hr time horizon... +2026-04-29 09:46:51,963 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:52,083 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 9 hr time horizon... +2026-04-29 09:46:52,107 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:52,864 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 11 hr time horizon... +2026-04-29 09:46:52,889 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:53,009 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 16 hr time horizon... +2026-04-29 09:46:53,033 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:53,574 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 15 hr time horizon... +2026-04-29 09:46:53,603 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:54,650 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 1 hr time horizon... +2026-04-29 09:46:54,672 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:57,824 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:57,848 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:58,129 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 16 hr time horizon... +2026-04-29 09:46:58,158 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:58,448 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 15 hr time horizon... +2026-04-29 09:46:58,476 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:59,231 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 15 hr time horizon... +2026-04-29 09:46:59,253 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:59,729 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:46:59,756 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:00,779 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 10 hr time horizon... +2026-04-29 09:47:00,804 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:02,724 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 6 hr time horizon... +2026-04-29 09:47:02,746 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:02,920 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 12 hr time horizon... +2026-04-29 09:47:02,941 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:03,675 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 16 hr time horizon... +2026-04-29 09:47:03,695 - __main__ - INFO - Processing values: 2018-01-19 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:04,202 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 16 hr time horizon... +2026-04-29 09:47:04,223 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:05,181 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:05,203 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:06,141 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 5 hr time horizon... +2026-04-29 09:47:06,166 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:06,658 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 14 hr time horizon... +2026-04-29 09:47:06,686 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:07,876 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 13 hr time horizon... +2026-04-29 09:47:07,898 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:08,112 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 18 hr time horizon... +2026-04-29 09:47:08,136 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:08,737 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 1 hr time horizon... +2026-04-29 09:47:08,759 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 12 hr time horizon... +2026-04-29 09:47:08,824 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 8 hr time horizon... +2026-04-29 09:47:08,861 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:09,311 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 10 hr time horizon... +2026-04-29 09:47:09,338 - __main__ - INFO - Processing values: 2018-01-21 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:11,736 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 9 hr time horizon... +2026-04-29 09:47:11,763 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:12,666 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 2 hr time horizon... +2026-04-29 09:47:12,686 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:13,205 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 4 hr time horizon... +2026-04-29 09:47:13,228 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:13,403 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 8 hr time horizon... +2026-04-29 09:47:13,426 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:14,449 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:14,471 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:15,069 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 15 hr time horizon... +2026-04-29 09:47:15,093 - __main__ - INFO - Processing values: 2018-01-21 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:15,772 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 13 hr time horizon... +2026-04-29 09:47:15,793 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:18,479 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 6 hr time horizon... +2026-04-29 09:47:18,512 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:18,684 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 5 hr time horizon... +2026-04-29 09:47:18,710 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:19,415 - __main__ - INFO - Finished processing 2018-01-19 15:00:00 7 hr time horizon... +2026-04-29 09:47:19,438 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 16 hr time horizon... +2026-04-29 09:47:19,625 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 12 hr time horizon... +2026-04-29 09:47:19,654 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:20,837 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:20,860 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:21,971 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:21,995 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:22,479 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 6 hr time horizon... +2026-04-29 09:47:22,504 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:23,771 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 3 hr time horizon... +2026-04-29 09:47:23,792 - __main__ - INFO - Processing values: 2018-01-22 12:00:00 13 hr time horizon... +2026-04-29 09:47:23,893 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 1 hr time horizon... +2026-04-29 09:47:23,918 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:24,403 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 12 hr time horizon... +2026-04-29 09:47:24,435 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:24,576 - __main__ - INFO - Finished processing 2018-01-21 10:00:00 4 hr time horizon... +2026-04-29 09:47:24,599 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:25,072 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 6 hr time horizon... +2026-04-29 09:47:25,097 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:27,283 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 11 hr time horizon... +2026-04-29 09:47:27,304 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:28,324 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 2 hr time horizon... +2026-04-29 09:47:28,343 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:28,462 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 15 hr time horizon... +2026-04-29 09:47:28,491 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:29,545 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 9 hr time horizon... +2026-04-29 09:47:29,570 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:29,817 - __main__ - INFO - Finished processing 2018-01-21 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:29,849 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:31,223 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 14 hr time horizon... +2026-04-29 09:47:31,244 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:31,402 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 13 hr time horizon... +2026-04-29 09:47:31,428 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:34,345 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 9 hr time horizon... +2026-04-29 09:47:34,369 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:34,592 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 12 hr time horizon... +2026-04-29 09:47:34,614 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 2 hr time horizon... +2026-04-29 09:47:34,662 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 16 hr time horizon... +2026-04-29 09:47:34,681 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 18 hr time horizon... +2026-04-29 09:47:34,758 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:34,792 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:37,383 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:37,408 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:37,974 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:38,002 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 8 hr time horizon... +2026-04-29 09:47:38,052 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 17 hr time horizon... +2026-04-29 09:47:38,077 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,035 - __main__ - INFO - Finished processing 2018-01-22 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,059 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,252 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 3 hr time horizon... +2026-04-29 09:47:39,271 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,492 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 6 hr time horizon... +2026-04-29 09:47:39,511 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,667 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 11 hr time horizon... +2026-04-29 09:47:39,694 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:39,716 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 10 hr time horizon... +2026-04-29 09:47:39,735 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:42,257 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 7 hr time horizon... +2026-04-29 09:47:42,280 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:42,760 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:42,780 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:43,069 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 1 hr time horizon... +2026-04-29 09:47:43,089 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:44,367 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 10 hr time horizon... +2026-04-29 09:47:44,388 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:44,668 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 16 hr time horizon... +2026-04-29 09:47:44,689 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:45,318 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 13 hr time horizon... +2026-04-29 09:47:45,338 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:48,039 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 2 hr time horizon... +2026-04-29 09:47:48,057 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:48,585 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 1 hr time horizon... +2026-04-29 09:47:48,604 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:50,118 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 15 hr time horizon... +2026-04-29 09:47:50,147 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:50,237 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 10 hr time horizon... +2026-04-29 09:47:50,262 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:50,364 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 18 hr time horizon... +2026-04-29 09:47:50,383 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:51,872 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 10 hr time horizon... +2026-04-29 09:47:51,896 - __main__ - INFO - Processing values: 2018-01-06 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:52,127 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 8 hr time horizon... +2026-04-29 09:47:52,161 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:52,762 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 5 hr time horizon... +2026-04-29 09:47:52,783 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:53,749 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 12 hr time horizon... +2026-04-29 09:47:53,771 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:53,796 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 4 hr time horizon... +2026-04-29 09:47:53,816 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:55,091 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 14 hr time horizon... +2026-04-29 09:47:55,113 - __main__ - INFO - Processing values: 2018-01-11 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:55,977 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 2 hr time horizon... +2026-04-29 09:47:56,002 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:56,540 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:56,565 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:57,551 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 1 hr time horizon... +2026-04-29 09:47:57,573 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:57,664 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 11 hr time horizon... +2026-04-29 09:47:57,686 - __main__ - INFO - Processing values: 2018-01-10 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:59,423 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 9 hr time horizon... +2026-04-29 09:47:59,447 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:47:59,891 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 12 hr time horizon... +2026-04-29 09:47:59,913 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:00,697 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 15 hr time horizon... +2026-04-29 09:48:00,720 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:03,513 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:03,539 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:03,770 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:03,794 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:05,142 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 3 hr time horizon... +2026-04-29 09:48:05,177 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:05,347 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:05,369 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:06,477 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 9 hr time horizon... +2026-04-29 09:48:06,502 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:07,014 - __main__ - INFO - Finished processing 2018-01-06 18:00:00 2 hr time horizon... +2026-04-29 09:48:07,033 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:07,632 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 6 hr time horizon... +2026-04-29 09:48:07,653 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:07,954 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 16 hr time horizon... +2026-04-29 09:48:07,979 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:08,145 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 8 hr time horizon... +2026-04-29 09:48:08,165 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:08,667 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 15 hr time horizon... +2026-04-29 09:48:08,688 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:09,234 - __main__ - INFO - Finished processing 2018-01-11 12:00:00 14 hr time horizon... +2026-04-29 09:48:09,259 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:10,608 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:10,629 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:12,062 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 8 hr time horizon... +2026-04-29 09:48:12,086 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:12,200 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 7 hr time horizon... +2026-04-29 09:48:12,223 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:12,406 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 7 hr time horizon... +2026-04-29 09:48:12,427 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:13,158 - __main__ - INFO - Finished processing 2018-01-10 23:00:00 5 hr time horizon... +2026-04-29 09:48:13,179 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:13,762 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 2 hr time horizon... +2026-04-29 09:48:13,780 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:14,443 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 9 hr time horizon... +2026-04-29 09:48:14,467 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:16,297 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 14 hr time horizon... +2026-04-29 09:48:16,324 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:17,348 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:17,366 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:17,974 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 10 hr time horizon... +2026-04-29 09:48:17,998 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:18,844 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 7 hr time horizon... +2026-04-29 09:48:18,865 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:19,365 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 8 hr time horizon... +2026-04-29 09:48:19,390 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:20,985 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 15 hr time horizon... +2026-04-29 09:48:21,009 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:21,557 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:21,593 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:21,805 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 4 hr time horizon... +2026-04-29 09:48:21,830 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:22,000 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 4 hr time horizon... +2026-04-29 09:48:22,024 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:22,576 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 6 hr time horizon... +2026-04-29 09:48:22,595 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:23,628 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 12 hr time horizon... +2026-04-29 09:48:23,649 - __main__ - INFO - Processing values: 2018-01-24 16:00:00 13 hr time horizon... +2026-04-29 09:48:23,768 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:23,786 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:24,620 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 2 hr time horizon... +2026-04-29 09:48:24,640 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:25,899 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 2 hr time horizon... +2026-04-29 09:48:25,917 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:26,003 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 18 hr time horizon... +2026-04-29 09:48:26,022 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:27,066 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:27,086 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:28,298 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 12 hr time horizon... +2026-04-29 09:48:28,318 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:28,482 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 1 hr time horizon... +2026-04-29 09:48:28,504 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 10 hr time horizon... +2026-04-29 09:48:28,615 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 7 hr time horizon... +2026-04-29 09:48:28,635 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:31,105 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 7 hr time horizon... +2026-04-29 09:48:31,126 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:31,624 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 14 hr time horizon... +2026-04-29 09:48:31,646 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:32,958 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 14 hr time horizon... +2026-04-29 09:48:32,979 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 14 hr time horizon... +2026-04-29 09:48:33,048 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:33,075 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:33,376 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 11 hr time horizon... +2026-04-29 09:48:33,402 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:34,293 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:34,313 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:35,741 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 18 hr time horizon... +2026-04-29 09:48:35,767 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 15 hr time horizon... +2026-04-29 09:48:35,847 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:35,870 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:36,463 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 12 hr time horizon... +2026-04-29 09:48:36,498 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:38,252 - __main__ - INFO - Finished processing 2018-01-24 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:38,274 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:38,981 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 9 hr time horizon... +2026-04-29 09:48:39,004 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:39,257 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 4 hr time horizon... +2026-04-29 09:48:39,289 - __main__ - INFO - Processing values: 2018-01-23 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:40,051 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 2 hr time horizon... +2026-04-29 09:48:40,069 - __main__ - INFO - Processing values: 2018-01-03 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:40,565 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 14 hr time horizon... +2026-04-29 09:48:40,588 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:41,875 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:41,897 - __main__ - INFO - Processing values: 2018-01-24 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:42,894 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 13 hr time horizon... +2026-04-29 09:48:42,925 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:43,582 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 10 hr time horizon... +2026-04-29 09:48:43,602 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:44,190 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 12 hr time horizon... +2026-04-29 09:48:44,210 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 13 hr time horizon... +2026-04-29 09:48:44,343 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 7 hr time horizon... +2026-04-29 09:48:44,366 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:47,077 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 15 hr time horizon... +2026-04-29 09:48:47,099 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:47,281 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 14 hr time horizon... +2026-04-29 09:48:47,316 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:47,921 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 2 hr time horizon... +2026-04-29 09:48:47,942 - __main__ - INFO - Processing values: 2018-01-11 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:48,887 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 14 hr time horizon... +2026-04-29 09:48:48,911 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:49,143 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 11 hr time horizon... +2026-04-29 09:48:49,169 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:49,234 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 14 hr time horizon... +2026-04-29 09:48:49,255 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:51,046 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 15 hr time horizon... +2026-04-29 09:48:51,068 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:52,068 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 5 hr time horizon... +2026-04-29 09:48:52,095 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:52,236 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 7 hr time horizon... +2026-04-29 09:48:52,265 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:53,387 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 7 hr time horizon... +2026-04-29 09:48:53,410 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:54,684 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 1 hr time horizon... +2026-04-29 09:48:54,709 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 14 hr time horizon... +2026-04-29 09:48:54,724 - __main__ - INFO - Finished processing 2018-01-23 18:00:00 2 hr time horizon... +2026-04-29 09:48:54,744 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:55,308 - __main__ - INFO - Finished processing 2018-01-03 10:00:00 9 hr time horizon... +2026-04-29 09:48:55,329 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:57,188 - __main__ - INFO - Finished processing 2018-01-24 17:00:00 18 hr time horizon... +2026-04-29 09:48:57,212 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:58,172 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 2 hr time horizon... +2026-04-29 09:48:58,195 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:58,365 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 13 hr time horizon... +2026-04-29 09:48:58,387 - __main__ - INFO - Processing values: 2018-01-17 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:59,269 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 3 hr time horizon... +2026-04-29 09:48:59,301 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:48:59,842 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 6 hr time horizon... +2026-04-29 09:48:59,862 - __main__ - INFO - Processing values: 2018-01-24 17:00:00 4 hr time horizon... +2026-04-29 09:49:00,108 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 13 hr time horizon... +2026-04-29 09:49:00,131 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:02,492 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 1 hr time horizon... +2026-04-29 09:49:02,520 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:03,327 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 15 hr time horizon... +2026-04-29 09:49:03,351 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:03,537 - __main__ - INFO - Finished processing 2018-01-11 22:00:00 12 hr time horizon... +2026-04-29 09:49:03,570 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:04,314 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 6 hr time horizon... +2026-04-29 09:49:04,338 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:04,632 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 8 hr time horizon... +2026-04-29 09:49:04,657 - __main__ - INFO - Processing values: 2018-01-27 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:04,911 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 14 hr time horizon... +2026-04-29 09:49:04,936 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:06,660 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 13 hr time horizon... +2026-04-29 09:49:06,684 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:07,358 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 2 hr time horizon... +2026-04-29 09:49:07,377 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:08,772 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 2 hr time horizon... +2026-04-29 09:49:08,793 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:09,070 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:09,093 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:09,703 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 3 hr time horizon... +2026-04-29 09:49:09,725 - __main__ - INFO - Processing values: 2018-01-25 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:10,757 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:10,781 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:10,971 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 2 hr time horizon... +2026-04-29 09:49:10,993 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:12,785 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 4 hr time horizon... +2026-04-29 09:49:12,808 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:13,405 - __main__ - INFO - Finished processing 2018-01-17 09:00:00 8 hr time horizon... +2026-04-29 09:49:13,430 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:13,480 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 18 hr time horizon... +2026-04-29 09:49:13,500 - __main__ - INFO - Processing values: 2018-01-26 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:13,905 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 13 hr time horizon... +2026-04-29 09:49:13,933 - __main__ - INFO - Processing values: 2018-01-29 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:14,850 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 4 hr time horizon... +2026-04-29 09:49:14,871 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:17,023 - __main__ - INFO - Finished processing 2018-01-24 17:00:00 4 hr time horizon... +2026-04-29 09:49:17,052 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:17,207 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 9 hr time horizon... +2026-04-29 09:49:17,235 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:49:18,525 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:18,552 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:19,084 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 4 hr time horizon... +2026-04-29 09:49:19,107 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:19,257 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 8 hr time horizon... +2026-04-29 09:49:19,283 - __main__ - INFO - Processing values: 2018-01-21 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:19,808 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 6 hr time horizon... +2026-04-29 09:49:19,830 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:20,346 - __main__ - INFO - Finished processing 2018-01-27 01:00:00 17 hr time horizon... +2026-04-29 09:49:20,373 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:21,795 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 5 hr time horizon... +2026-04-29 09:49:21,815 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:22,765 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:22,801 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:24,279 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:24,302 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:25,131 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 3 hr time horizon... +2026-04-29 09:49:25,158 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:25,302 - __main__ - INFO - Finished processing 2018-01-25 22:00:00 2 hr time horizon... +2026-04-29 09:49:25,323 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:25,602 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 6 hr time horizon... +2026-04-29 09:49:25,628 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:26,055 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 1 hr time horizon... +2026-04-29 09:49:26,070 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:26,872 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:49:26,895 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:29,517 - __main__ - INFO - Finished processing 2018-01-26 21:00:00 15 hr time horizon... +2026-04-29 09:49:29,541 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:30,003 - __main__ - INFO - Finished processing 2018-01-29 15:00:00 13 hr time horizon... +2026-04-29 09:49:30,024 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 17 hr time horizon... +2026-04-29 09:49:30,035 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 1 hr time horizon... +2026-04-29 09:49:30,053 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 3 hr time horizon... +2026-04-29 09:49:30,185 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 6 hr time horizon... +2026-04-29 09:49:30,206 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:32,790 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 14 hr time horizon... +2026-04-29 09:49:32,816 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:33,549 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 12 hr time horizon... +2026-04-29 09:49:33,581 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:33,874 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 3 hr time horizon... +2026-04-29 09:49:33,896 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:35,060 - __main__ - INFO - Finished processing 2018-01-21 11:00:00 12 hr time horizon... +2026-04-29 09:49:35,083 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:35,255 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 15 hr time horizon... +2026-04-29 09:49:35,276 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:35,646 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 18 hr time horizon... +2026-04-29 09:49:35,669 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:36,655 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 16 hr time horizon... +2026-04-29 09:49:36,676 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:37,712 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 12 hr time horizon... +2026-04-29 09:49:37,736 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:38,309 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 16 hr time horizon... +2026-04-29 09:49:38,335 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:38,582 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 9 hr time horizon... +2026-04-29 09:49:38,606 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:41,316 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 3 hr time horizon... +2026-04-29 09:49:41,338 - __main__ - INFO - Processing values: 2018-01-10 11:00:00 1 hr time horizon... +2026-04-29 09:49:41,414 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 1 hr time horizon... +2026-04-29 09:49:41,434 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:41,608 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 11 hr time horizon... +2026-04-29 09:49:41,635 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:44,015 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 11 hr time horizon... +2026-04-29 09:49:44,045 - __main__ - INFO - Processing values: 2018-01-19 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:44,695 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:44,716 - __main__ - INFO - Processing values: 2018-01-25 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:45,156 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 17 hr time horizon... +2026-04-29 09:49:45,182 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 4 hr time horizon... +2026-04-29 09:49:45,236 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 3 hr time horizon... +2026-04-29 09:49:45,256 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 6 hr time horizon... +2026-04-29 09:49:45,289 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 14 hr time horizon... +2026-04-29 09:49:45,310 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 14 hr time horizon... +2026-04-29 09:49:45,735 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 17 hr time horizon... +2026-04-29 09:49:45,756 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:48,924 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 3 hr time horizon... +2026-04-29 09:49:48,946 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:49,054 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:49,082 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:49,704 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 13 hr time horizon... +2026-04-29 09:49:49,730 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:50,207 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 6 hr time horizon... +2026-04-29 09:49:50,224 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:51,275 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 5 hr time horizon... +2026-04-29 09:49:51,302 - __main__ - INFO - Processing values: 2018-01-13 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:51,498 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:51,522 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:52,507 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 9 hr time horizon... +2026-04-29 09:49:52,529 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:53,231 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 16 hr time horizon... +2026-04-29 09:49:53,250 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:53,827 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 15 hr time horizon... +2026-04-29 09:49:53,851 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:53,963 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 15 hr time horizon... +2026-04-29 09:49:53,988 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:56,130 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:56,156 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:56,398 - __main__ - INFO - Finished processing 2018-01-10 11:00:00 1 hr time horizon... +2026-04-29 09:49:56,422 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:56,886 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 4 hr time horizon... +2026-04-29 09:49:56,911 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:58,238 - __main__ - INFO - Finished processing 2018-01-25 06:00:00 4 hr time horizon... +2026-04-29 09:49:58,256 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:59,579 - __main__ - INFO - Finished processing 2018-01-19 19:00:00 5 hr time horizon... +2026-04-29 09:49:59,602 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:49:59,958 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 6 hr time horizon... +2026-04-29 09:49:59,979 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:01,039 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 16 hr time horizon... +2026-04-29 09:50:01,068 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:01,914 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 14 hr time horizon... +2026-04-29 09:50:01,937 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:02,553 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 4 hr time horizon... +2026-04-29 09:50:02,574 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:03,588 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 12 hr time horizon... +2026-04-29 09:50:03,616 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 15 hr time horizon... +2026-04-29 09:50:03,694 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 3 hr time horizon... +2026-04-29 09:50:03,730 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:04,242 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 7 hr time horizon... +2026-04-29 09:50:04,269 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:05,187 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 10 hr time horizon... +2026-04-29 09:50:05,212 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:06,633 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 17 hr time horizon... +2026-04-29 09:50:06,667 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:06,750 - __main__ - INFO - Finished processing 2018-01-13 06:00:00 11 hr time horizon... +2026-04-29 09:50:06,775 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:07,139 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 6 hr time horizon... +2026-04-29 09:50:07,163 - __main__ - INFO - Processing values: 2018-01-02 09:00:00 3 hr time horizon... +2026-04-29 09:50:07,428 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 10 hr time horizon... +2026-04-29 09:50:07,450 - __main__ - INFO - Processing values: 2018-01-26 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:08,870 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 5 hr time horizon... +2026-04-29 09:50:08,893 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:09,701 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:09,723 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:11,661 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 8 hr time horizon... +2026-04-29 09:50:11,688 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:12,468 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 16 hr time horizon... +2026-04-29 09:50:12,492 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:12,680 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 15 hr time horizon... +2026-04-29 09:50:12,706 - __main__ - INFO - Processing values: 2018-01-05 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:50:13,749 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:13,777 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:15,106 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 10 hr time horizon... +2026-04-29 09:50:15,132 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:15,287 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:15,313 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:16,349 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:16,372 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:18,215 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 4 hr time horizon... +2026-04-29 09:50:18,233 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:18,355 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 5 hr time horizon... +2026-04-29 09:50:18,381 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 14 hr time horizon... +2026-04-29 09:50:18,408 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 15 hr time horizon... +2026-04-29 09:50:18,436 - __main__ - INFO - Processing values: 2018-01-02 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:19,259 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 18 hr time horizon... +2026-04-29 09:50:19,289 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:19,504 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 15 hr time horizon... +2026-04-29 09:50:19,526 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:50:19,814 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:19,840 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:21,719 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 6 hr time horizon... +2026-04-29 09:50:21,741 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:21,945 - __main__ - INFO - Finished processing 2018-01-02 09:00:00 3 hr time horizon... +2026-04-29 09:50:21,966 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:22,441 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:22,465 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:23,443 - __main__ - INFO - Finished processing 2018-01-26 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:23,469 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:24,895 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 2 hr time horizon... +2026-04-29 09:50:24,918 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:25,107 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 16 hr time horizon... +2026-04-29 09:50:25,132 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:27,158 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 12 hr time horizon... +2026-04-29 09:50:27,183 - __main__ - INFO - Processing values: 2018-01-10 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:27,937 - __main__ - INFO - Finished processing 2018-01-05 12:00:00 7 hr time horizon... +2026-04-29 09:50:27,957 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:28,617 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 5 hr time horizon... +2026-04-29 09:50:28,641 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:29,217 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 18 hr time horizon... +2026-04-29 09:50:29,239 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:30,169 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:30,190 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:30,921 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 9 hr time horizon... +2026-04-29 09:50:30,942 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:32,775 - __main__ - INFO - Finished processing 2018-01-02 15:00:00 16 hr time horizon... +2026-04-29 09:50:32,796 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:33,233 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 11 hr time horizon... +2026-04-29 09:50:33,253 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:33,293 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 11 hr time horizon... +2026-04-29 09:50:33,315 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:34,228 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:34,254 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:34,748 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 8 hr time horizon... +2026-04-29 09:50:34,770 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:35,444 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 16 hr time horizon... +2026-04-29 09:50:35,466 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:35,731 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 18 hr time horizon... +2026-04-29 09:50:35,760 - __main__ - INFO - Processing values: 2018-01-26 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:37,149 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:37,172 - __main__ - INFO - Processing values: 2018-01-25 13:00:00 2 hr time horizon... +2026-04-29 09:50:37,180 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 9 hr time horizon... +2026-04-29 09:50:37,204 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:38,093 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 13 hr time horizon... +2026-04-29 09:50:38,115 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:39,238 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 11 hr time horizon... +2026-04-29 09:50:39,265 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:39,274 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 18 hr time horizon... +2026-04-29 09:50:39,293 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 8 hr time horizon... +2026-04-29 09:50:39,484 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 2 hr time horizon... +2026-04-29 09:50:39,503 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:41,741 - __main__ - INFO - Finished processing 2018-01-10 11:00:00 7 hr time horizon... +2026-04-29 09:50:41,767 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:42,805 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 1 hr time horizon... +2026-04-29 09:50:42,832 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:43,236 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 6 hr time horizon... +2026-04-29 09:50:43,262 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:45,157 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 10 hr time horizon... +2026-04-29 09:50:45,179 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:45,659 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 13 hr time horizon... +2026-04-29 09:50:45,685 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:45,910 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 5 hr time horizon... +2026-04-29 09:50:45,933 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 13 hr time horizon... +2026-04-29 09:50:46,032 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 6 hr time horizon... +2026-04-29 09:50:46,052 - __main__ - INFO - Processing values: 2018-01-06 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:47,073 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 14 hr time horizon... +2026-04-29 09:50:47,106 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:48,594 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 17 hr time horizon... +2026-04-29 09:50:48,621 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:48,795 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 14 hr time horizon... +2026-04-29 09:50:48,825 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:49,445 - __main__ - INFO - Finished processing 2018-01-26 10:00:00 1 hr time horizon... +2026-04-29 09:50:49,466 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:49,557 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 17 hr time horizon... +2026-04-29 09:50:49,579 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:49,840 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 5 hr time horizon... +2026-04-29 09:50:49,862 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:51,069 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 1 hr time horizon... +2026-04-29 09:50:51,087 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:51,684 - __main__ - INFO - Finished processing 2018-01-25 13:00:00 2 hr time horizon... +2026-04-29 09:50:51,706 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:52,610 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 1 hr time horizon... +2026-04-29 09:50:52,630 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:53,985 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 3 hr time horizon... +2026-04-29 09:50:54,016 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:54,742 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:54,772 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:55,032 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 8 hr time horizon... +2026-04-29 09:50:55,055 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:56,487 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 8 hr time horizon... +2026-04-29 09:50:56,511 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:57,107 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 2 hr time horizon... +2026-04-29 09:50:57,128 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:57,659 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 1 hr time horizon... +2026-04-29 09:50:57,679 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:50:59,439 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 17 hr time horizon... +2026-04-29 09:50:59,462 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:00,424 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 13 hr time horizon... +2026-04-29 09:51:00,448 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:00,552 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 15 hr time horizon... +2026-04-29 09:51:00,578 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:02,214 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 7 hr time horizon... +2026-04-29 09:51:02,236 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:02,330 - __main__ - INFO - Finished processing 2018-01-06 11:00:00 8 hr time horizon... +2026-04-29 09:51:02,354 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:02,712 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 7 hr time horizon... +2026-04-29 09:51:02,732 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:03,683 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 6 hr time horizon... +2026-04-29 09:51:03,706 - __main__ - INFO - Processing values: 2018-01-13 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:04,536 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 10 hr time horizon... +2026-04-29 09:51:04,555 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:04,770 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 12 hr time horizon... +2026-04-29 09:51:04,793 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:05,893 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 16 hr time horizon... +2026-04-29 09:51:05,918 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:06,172 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 13 hr time horizon... +2026-04-29 09:51:06,196 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:07,165 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 12 hr time horizon... +2026-04-29 09:51:07,187 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:08,035 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 3 hr time horizon... +2026-04-29 09:51:08,053 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:09,405 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 5 hr time horizon... +2026-04-29 09:51:09,425 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:10,060 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 8 hr time horizon... +2026-04-29 09:51:10,085 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:11,985 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 5 hr time horizon... +2026-04-29 09:51:12,013 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:12,654 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 10 hr time horizon... +2026-04-29 09:51:12,673 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:12,721 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 10 hr time horizon... +2026-04-29 09:51:12,743 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:13,696 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 1 hr time horizon... +2026-04-29 09:51:13,716 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:15,190 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 2 hr time horizon... +2026-04-29 09:51:15,222 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:15,959 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 8 hr time horizon... +2026-04-29 09:51:15,985 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:16,459 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 2 hr time horizon... +2026-04-29 09:51:16,478 - __main__ - INFO - Processing values: 2018-01-25 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:17,406 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:17,430 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:18,036 - __main__ - INFO - Finished processing 2018-01-13 13:00:00 13 hr time horizon... +2026-04-29 09:51:18,056 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:18,389 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 6 hr time horizon... +2026-04-29 09:51:18,413 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:19,901 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 1 hr time horizon... +2026-04-29 09:51:19,924 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:20,076 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 5 hr time horizon... +2026-04-29 09:51:20,098 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:20,534 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 3 hr time horizon... +2026-04-29 09:51:20,555 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:22,050 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:22,077 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 18 hr time horizon... +2026-04-29 09:51:22,229 - __main__ - INFO - Finished processing 2018-01-29 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:51:22,250 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:23,296 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 3 hr time horizon... +2026-04-29 09:51:23,317 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:24,149 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 16 hr time horizon... +2026-04-29 09:51:24,171 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:25,528 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:25,549 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:27,459 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 5 hr time horizon... +2026-04-29 09:51:27,481 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:27,759 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 1 hr time horizon... +2026-04-29 09:51:27,781 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:27,950 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 18 hr time horizon... +2026-04-29 09:51:27,974 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:28,856 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 14 hr time horizon... +2026-04-29 09:51:28,878 - __main__ - INFO - Processing values: 2018-01-24 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:30,218 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 12 hr time horizon... +2026-04-29 09:51:30,240 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:30,741 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 17 hr time horizon... +2026-04-29 09:51:30,765 - __main__ - INFO - Processing values: 2018-01-27 20:00:00 11 hr time horizon... +2026-04-29 09:51:30,796 - __main__ - INFO - Finished processing 2018-01-25 10:00:00 1 hr time horizon... +2026-04-29 09:51:30,814 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:31,074 - __main__ - INFO - Finished processing 2018-01-29 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:31,100 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:32,142 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 8 hr time horizon... +2026-04-29 09:51:32,164 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:33,676 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 8 hr time horizon... +2026-04-29 09:51:33,702 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:34,444 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:34,468 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:35,429 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:35,458 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 9 hr time horizon... +2026-04-29 09:51:35,536 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 8 hr time horizon... +2026-04-29 09:51:35,562 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:36,426 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 10 hr time horizon... +2026-04-29 09:51:36,448 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:37,442 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 7 hr time horizon... +2026-04-29 09:51:37,461 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:37,740 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 18 hr time horizon... +2026-04-29 09:51:37,762 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:38,357 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 18 hr time horizon... +2026-04-29 09:51:38,378 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:40,375 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 3 hr time horizon... +2026-04-29 09:51:40,396 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:40,688 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 7 hr time horizon... +2026-04-29 09:51:40,708 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:42,636 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:42,660 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:43,079 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 6 hr time horizon... +2026-04-29 09:51:43,098 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:43,342 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 3 hr time horizon... +2026-04-29 09:51:43,366 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:43,930 - __main__ - INFO - Finished processing 2018-01-24 15:00:00 16 hr time horizon... +2026-04-29 09:51:43,955 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:45,797 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 16 hr time horizon... +2026-04-29 09:51:45,821 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 6 hr time horizon... +2026-04-29 09:51:45,880 - __main__ - INFO - Finished processing 2018-01-27 20:00:00 11 hr time horizon... +2026-04-29 09:51:45,900 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:46,165 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:46,184 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:47,523 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 18 hr time horizon... +2026-04-29 09:51:47,555 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:49,091 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 13 hr time horizon... +2026-04-29 09:51:49,118 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:51:49,401 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:49,424 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:50,227 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 9 hr time horizon... +2026-04-29 09:51:50,246 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:50,725 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 10 hr time horizon... +2026-04-29 09:51:50,752 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:50,954 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:50,975 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:51,799 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 7 hr time horizon... +2026-04-29 09:51:51,818 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 15 hr time horizon... +2026-04-29 09:51:51,940 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 1 hr time horizon... +2026-04-29 09:51:51,958 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:52,123 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 5 hr time horizon... +2026-04-29 09:51:52,145 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 2 hr time horizon... +2026-04-29 09:51:52,364 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:52,386 - __main__ - INFO - Processing values: 2018-01-29 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:54,152 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 9 hr time horizon... +2026-04-29 09:51:54,183 - __main__ - INFO - Processing values: 2018-01-09 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:55,624 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 10 hr time horizon... +2026-04-29 09:51:55,649 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:57,158 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 17 hr time horizon... +2026-04-29 09:51:57,179 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:57,913 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 9 hr time horizon... +2026-04-29 09:51:57,935 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:51:58,534 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 1 hr time horizon... +2026-04-29 09:51:58,555 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:00,469 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 18 hr time horizon... +2026-04-29 09:52:00,491 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:01,011 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 6 hr time horizon... +2026-04-29 09:52:01,037 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:01,279 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 4 hr time horizon... +2026-04-29 09:52:01,302 - __main__ - INFO - Processing values: 2018-01-05 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:02,468 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:02,494 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:02,972 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 3 hr time horizon... +2026-04-29 09:52:03,000 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:03,528 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 1 hr time horizon... +2026-04-29 09:52:03,550 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:04,290 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 4 hr time horizon... +2026-04-29 09:52:04,309 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:05,427 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 12 hr time horizon... +2026-04-29 09:52:05,452 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:06,152 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 15 hr time horizon... +2026-04-29 09:52:06,174 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:06,473 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:06,498 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:07,547 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 2 hr time horizon... +2026-04-29 09:52:07,576 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:07,978 - __main__ - INFO - Finished processing 2018-01-29 15:00:00 16 hr time horizon... +2026-04-29 09:52:08,002 - __main__ - INFO - Processing values: 2018-01-20 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:08,107 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 15 hr time horizon... +2026-04-29 09:52:08,131 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 14 hr time horizon... +2026-04-29 09:52:08,178 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 5 hr time horizon... +2026-04-29 09:52:08,199 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:10,311 - __main__ - INFO - Finished processing 2018-01-09 02:00:00 16 hr time horizon... +2026-04-29 09:52:10,340 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:11,599 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 10 hr time horizon... +2026-04-29 09:52:11,625 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:12,309 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 4 hr time horizon... +2026-04-29 09:52:12,330 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:12,508 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 8 hr time horizon... +2026-04-29 09:52:12,532 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:13,232 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 6 hr time horizon... +2026-04-29 09:52:13,258 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:14,764 - __main__ - INFO - Finished processing 2018-01-05 14:00:00 12 hr time horizon... +2026-04-29 09:52:14,786 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:15,066 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 2 hr time horizon... +2026-04-29 09:52:15,087 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:16,372 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:16,394 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:17,046 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:17,065 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:18,555 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 7 hr time horizon... +2026-04-29 09:52:18,571 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 8 hr time horizon... +2026-04-29 09:52:18,577 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 13 hr time horizon... +2026-04-29 09:52:18,594 - __main__ - INFO - Processing values: 2018-01-26 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:19,327 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 14 hr time horizon... +2026-04-29 09:52:19,351 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:20,940 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 5 hr time horizon... +2026-04-29 09:52:20,968 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:21,357 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 13 hr time horizon... +2026-04-29 09:52:21,385 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 14 hr time horizon... +2026-04-29 09:52:21,498 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:21,522 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 10 hr time horizon... +2026-04-29 09:52:21,557 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:21,587 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:22,682 - __main__ - INFO - Finished processing 2018-01-20 18:00:00 13 hr time horizon... +2026-04-29 09:52:22,710 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:23,590 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 14 hr time horizon... +2026-04-29 09:52:23,611 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:23,741 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 11 hr time horizon... +2026-04-29 09:52:23,761 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:26,155 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:52:26,179 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:26,828 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 12 hr time horizon... +2026-04-29 09:52:26,851 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:27,451 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 15 hr time horizon... +2026-04-29 09:52:27,478 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:52:28,500 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:28,530 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:28,792 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 1 hr time horizon... +2026-04-29 09:52:28,813 - __main__ - INFO - Processing values: 2018-01-12 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:28,951 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 18 hr time horizon... +2026-04-29 09:52:28,971 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:29,867 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 17 hr time horizon... +2026-04-29 09:52:29,886 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:31,516 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 16 hr time horizon... +2026-04-29 09:52:31,539 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:32,475 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 13 hr time horizon... +2026-04-29 09:52:32,497 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:32,764 - __main__ - INFO - Finished processing 2018-01-26 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:32,790 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:33,449 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 3 hr time horizon... +2026-04-29 09:52:33,469 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:34,597 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 10 hr time horizon... +2026-04-29 09:52:34,618 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:34,730 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 10 hr time horizon... +2026-04-29 09:52:34,749 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:35,734 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:35,769 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:36,610 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 8 hr time horizon... +2026-04-29 09:52:36,631 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:37,535 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 15 hr time horizon... +2026-04-29 09:52:37,560 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 5 hr time horizon... +2026-04-29 09:52:37,586 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 11 hr time horizon... +2026-04-29 09:52:37,608 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:52:38,159 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:38,185 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:40,897 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 15 hr time horizon... +2026-04-29 09:52:40,922 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:41,771 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 6 hr time horizon... +2026-04-29 09:52:41,787 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 6 hr time horizon... +2026-04-29 09:52:41,801 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:41,809 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:42,604 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 5 hr time horizon... +2026-04-29 09:52:42,628 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:43,197 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 3 hr time horizon... +2026-04-29 09:52:43,219 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:43,596 - __main__ - INFO - Finished processing 2018-01-12 15:00:00 2 hr time horizon... +2026-04-29 09:52:43,616 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:44,608 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 4 hr time horizon... +2026-04-29 09:52:44,635 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:44,844 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 5 hr time horizon... +2026-04-29 09:52:44,864 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:46,584 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 13 hr time horizon... +2026-04-29 09:52:46,606 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:46,871 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 9 hr time horizon... +2026-04-29 09:52:46,896 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:47,035 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 16 hr time horizon... +2026-04-29 09:52:47,056 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:48,038 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 2 hr time horizon... +2026-04-29 09:52:48,068 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:49,877 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 16 hr time horizon... +2026-04-29 09:52:49,900 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:50,414 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 13 hr time horizon... +2026-04-29 09:52:50,455 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:50,620 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 16 hr time horizon... +2026-04-29 09:52:50,650 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:51,624 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 5 hr time horizon... +2026-04-29 09:52:51,645 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:51,985 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 6 hr time horizon... +2026-04-29 09:52:52,003 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:52,865 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 5 hr time horizon... +2026-04-29 09:52:52,889 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 18 hr time horizon... +2026-04-29 09:52:53,222 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 15 hr time horizon... +2026-04-29 09:52:53,243 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:56,595 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 18 hr time horizon... +2026-04-29 09:52:56,619 - __main__ - INFO - Processing values: 2018-01-15 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:57,528 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 2 hr time horizon... +2026-04-29 09:52:57,556 - __main__ - INFO - Processing values: 2018-01-15 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:57,720 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 15 hr time horizon... +2026-04-29 09:52:57,743 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:57,783 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 16 hr time horizon... +2026-04-29 09:52:57,806 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 11 hr time horizon... +2026-04-29 09:52:57,821 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 4 hr time horizon... +2026-04-29 09:52:57,840 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:57,963 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 11 hr time horizon... +2026-04-29 09:52:57,981 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:59,457 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:52:59,487 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:00,391 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 9 hr time horizon... +2026-04-29 09:53:00,415 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:00,902 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 8 hr time horizon... +2026-04-29 09:53:00,933 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:02,262 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:02,294 - __main__ - INFO - Processing values: 2018-01-16 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:02,899 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 3 hr time horizon... +2026-04-29 09:53:02,924 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:03,191 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:03,212 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:04,477 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 11 hr time horizon... +2026-04-29 09:53:04,500 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:05,549 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 12 hr time horizon... +2026-04-29 09:53:05,571 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:05,976 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 7 hr time horizon... +2026-04-29 09:53:05,997 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:06,244 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 8 hr time horizon... +2026-04-29 09:53:06,276 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:06,490 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 7 hr time horizon... +2026-04-29 09:53:06,511 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:53:07,402 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:07,427 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 3 hr time horizon... +2026-04-29 09:53:08,019 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 18 hr time horizon... +2026-04-29 09:53:08,046 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:11,265 - __main__ - INFO - Finished processing 2018-01-15 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:11,299 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:11,810 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 9 hr time horizon... +2026-04-29 09:53:11,832 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:12,108 - __main__ - INFO - Finished processing 2018-01-15 17:00:00 5 hr time horizon... +2026-04-29 09:53:12,130 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:12,247 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 11 hr time horizon... +2026-04-29 09:53:12,267 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 15 hr time horizon... +2026-04-29 09:53:12,321 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 5 hr time horizon... +2026-04-29 09:53:12,340 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 9 hr time horizon... +2026-04-29 09:53:12,376 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 16 hr time horizon... +2026-04-29 09:53:12,397 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:14,393 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 17 hr time horizon... +2026-04-29 09:53:14,414 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:15,623 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 2 hr time horizon... +2026-04-29 09:53:15,646 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:17,425 - __main__ - INFO - Finished processing 2018-01-16 20:00:00 12 hr time horizon... +2026-04-29 09:53:17,446 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:17,721 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 6 hr time horizon... +2026-04-29 09:53:17,741 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:18,032 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 1 hr time horizon... +2026-04-29 09:53:18,059 - __main__ - INFO - Processing values: 2018-01-27 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:19,054 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 12 hr time horizon... +2026-04-29 09:53:19,080 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 1 hr time horizon... +2026-04-29 09:53:19,103 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:19,134 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:20,545 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 8 hr time horizon... +2026-04-29 09:53:20,568 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:20,832 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 5 hr time horizon... +2026-04-29 09:53:20,855 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:21,340 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 6 hr time horizon... +2026-04-29 09:53:21,363 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:21,636 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 7 hr time horizon... +2026-04-29 09:53:21,658 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 3 hr time horizon... +2026-04-29 09:53:22,152 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 3 hr time horizon... +2026-04-29 09:53:22,170 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:25,955 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 2 hr time horizon... +2026-04-29 09:53:25,979 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:26,021 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:26,044 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:26,687 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:26,711 - __main__ - INFO - Processing values: 2018-01-14 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:26,993 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 10 hr time horizon... +2026-04-29 09:53:27,019 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:27,429 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 11 hr time horizon... +2026-04-29 09:53:27,451 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 8 hr time horizon... +2026-04-29 09:53:27,558 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 16 hr time horizon... +2026-04-29 09:53:27,590 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 13 hr time horizon... +2026-04-29 09:53:27,657 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 15 hr time horizon... +2026-04-29 09:53:27,679 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:30,875 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 4 hr time horizon... +2026-04-29 09:53:30,903 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:32,142 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 2 hr time horizon... +2026-04-29 09:53:32,168 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:33,888 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 8 hr time horizon... +2026-04-29 09:53:33,911 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:34,078 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 1 hr time horizon... +2026-04-29 09:53:34,099 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:34,872 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:34,895 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:35,277 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:53:35,305 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:35,907 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 10 hr time horizon... +2026-04-29 09:53:35,926 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:36,146 - __main__ - INFO - Finished processing 2018-01-27 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:36,172 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:36,432 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 1 hr time horizon... +2026-04-29 09:53:36,457 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:36,781 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 5 hr time horizon... +2026-04-29 09:53:36,801 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:37,483 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 3 hr time horizon... +2026-04-29 09:53:37,506 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:38,022 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 4 hr time horizon... +2026-04-29 09:53:38,044 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:40,907 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 15 hr time horizon... +2026-04-29 09:53:40,927 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:42,127 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 13 hr time horizon... +2026-04-29 09:53:42,156 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:42,784 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 8 hr time horizon... +2026-04-29 09:53:42,809 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:42,928 - __main__ - INFO - Finished processing 2018-01-14 11:00:00 6 hr time horizon... +2026-04-29 09:53:42,948 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 5 hr time horizon... +2026-04-29 09:53:43,094 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 11 hr time horizon... +2026-04-29 09:53:43,115 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 1 hr time horizon... +2026-04-29 09:53:43,267 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 13 hr time horizon... +2026-04-29 09:53:43,291 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:43,446 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 18 hr time horizon... +2026-04-29 09:53:43,470 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:46,253 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:46,272 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:46,839 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 15 hr time horizon... +2026-04-29 09:53:46,861 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:48,829 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 4 hr time horizon... +2026-04-29 09:53:49,462 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 1 hr time horizon... +2026-04-29 09:53:49,471 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 13 hr time horizon... +2026-04-29 09:53:49,495 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:50,336 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:50,367 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:50,910 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:50,933 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:51,819 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 9 hr time horizon... +2026-04-29 09:53:51,845 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:52,382 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 7 hr time horizon... +2026-04-29 09:53:52,401 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:52,717 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:52,743 - __main__ - INFO - Processing values: 2018-01-24 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:53,305 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 2 hr time horizon... +2026-04-29 09:53:53,325 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:53,740 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 12 hr time horizon... +2026-04-29 09:53:53,768 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:53,981 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 17 hr time horizon... +2026-04-29 09:53:54,002 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:56,415 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 6 hr time horizon... +2026-04-29 09:53:56,436 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:57,896 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 14 hr time horizon... +2026-04-29 09:53:57,919 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:57,990 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 5 hr time horizon... +2026-04-29 09:53:58,010 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:58,671 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 3 hr time horizon... +2026-04-29 09:53:58,693 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:58,978 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 14 hr time horizon... +2026-04-29 09:53:59,006 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 15 hr time horizon... +2026-04-29 09:53:59,031 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 1 hr time horizon... +2026-04-29 09:53:59,054 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:53:59,546 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 16 hr time horizon... +2026-04-29 09:53:59,571 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:01,949 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 2 hr time horizon... +2026-04-29 09:54:01,968 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:03,784 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 5 hr time horizon... +2026-04-29 09:54:03,809 - __main__ - INFO - Processing values: 2018-01-02 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:04,432 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 5 hr time horizon... +2026-04-29 09:54:04,456 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:05,161 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 1 hr time horizon... +2026-04-29 09:54:05,180 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:05,825 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 1 hr time horizon... +2026-04-29 09:54:05,844 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 9 hr time horizon... +2026-04-29 09:54:05,932 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 6 hr time horizon... +2026-04-29 09:54:05,953 - __main__ - INFO - Processing values: 2018-01-04 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:06,115 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 5 hr time horizon... +2026-04-29 09:54:06,141 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:08,069 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:08,093 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:08,761 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 9 hr time horizon... +2026-04-29 09:54:08,781 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 11 hr time horizon... +2026-04-29 09:54:08,786 - __main__ - INFO - Finished processing 2018-01-24 02:00:00 12 hr time horizon... +2026-04-29 09:54:08,806 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 12 hr time horizon... +2026-04-29 09:54:08,927 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 16 hr time horizon... +2026-04-29 09:54:08,947 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:09,370 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 7 hr time horizon... +2026-04-29 09:54:09,391 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:11,624 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 10 hr time horizon... +2026-04-29 09:54:11,649 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:12,746 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 11 hr time horizon... +2026-04-29 09:54:12,767 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:12,944 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 15 hr time horizon... +2026-04-29 09:54:12,968 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:13,297 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 17 hr time horizon... +2026-04-29 09:54:13,318 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:54:13,927 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:13,962 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:14,557 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 5 hr time horizon... +2026-04-29 09:54:14,577 - __main__ - INFO - Processing values: 2018-01-13 13:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:15,387 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 18 hr time horizon... +2026-04-29 09:54:15,407 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:16,296 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 8 hr time horizon... +2026-04-29 09:54:16,316 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:18,516 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 9 hr time horizon... +2026-04-29 09:54:18,537 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:19,026 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 18 hr time horizon... +2026-04-29 09:54:19,046 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:20,472 - __main__ - INFO - Finished processing 2018-01-02 06:00:00 5 hr time horizon... +2026-04-29 09:54:20,492 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:20,617 - __main__ - INFO - Finished processing 2018-01-04 13:00:00 8 hr time horizon... +2026-04-29 09:54:20,638 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:20,718 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 9 hr time horizon... +2026-04-29 09:54:20,740 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:22,239 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:22,260 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:22,706 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:22,729 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:23,329 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 14 hr time horizon... +2026-04-29 09:54:23,353 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:24,096 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 11 hr time horizon... +2026-04-29 09:54:24,122 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:24,289 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 11 hr time horizon... +2026-04-29 09:54:24,311 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:24,999 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 12 hr time horizon... +2026-04-29 09:54:25,021 - __main__ - INFO - Processing values: 2018-01-11 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:25,922 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 10 hr time horizon... +2026-04-29 09:54:25,947 - __main__ - INFO - Processing values: 2018-01-29 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:26,617 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 1 hr time horizon... +2026-04-29 09:54:26,637 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:27,124 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 2 hr time horizon... +2026-04-29 09:54:27,149 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:27,727 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 17 hr time horizon... +2026-04-29 09:54:27,751 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:27,881 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 5 hr time horizon... +2026-04-29 09:54:27,901 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:28,387 - __main__ - INFO - Finished processing 2018-01-13 13:00:00 2 hr time horizon... +2026-04-29 09:54:28,406 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:30,474 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 6 hr time horizon... +2026-04-29 09:54:30,494 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:31,366 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 11 hr time horizon... +2026-04-29 09:54:31,395 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:33,226 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 3 hr time horizon... +2026-04-29 09:54:33,249 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:34,185 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 2 hr time horizon... +2026-04-29 09:54:34,206 - __main__ - INFO - Processing values: 2018-01-09 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:34,238 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 16 hr time horizon... +2026-04-29 09:54:34,262 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:34,572 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:34,599 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:35,136 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:35,160 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:36,839 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 10 hr time horizon... +2026-04-29 09:54:36,862 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:37,435 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 4 hr time horizon... +2026-04-29 09:54:37,460 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:38,392 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 3 hr time horizon... +2026-04-29 09:54:38,417 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:38,535 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 11 hr time horizon... +2026-04-29 09:54:38,556 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 13 hr time horizon... +2026-04-29 09:54:38,561 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 5 hr time horizon... +2026-04-29 09:54:38,584 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:39,623 - __main__ - INFO - Finished processing 2018-01-11 11:00:00 10 hr time horizon... +2026-04-29 09:54:39,652 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:40,460 - __main__ - INFO - Finished processing 2018-01-29 07:00:00 13 hr time horizon... +2026-04-29 09:54:40,484 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:41,067 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 2 hr time horizon... +2026-04-29 09:54:41,086 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:41,959 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 11 hr time horizon... +2026-04-29 09:54:41,979 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 7 hr time horizon... +2026-04-29 09:54:41,997 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 5 hr time horizon... +2026-04-29 09:54:42,025 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:42,847 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 16 hr time horizon... +2026-04-29 09:54:42,868 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:43,368 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:43,393 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:45,315 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 6 hr time horizon... +2026-04-29 09:54:45,339 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:45,921 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 9 hr time horizon... +2026-04-29 09:54:45,945 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:48,268 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 15 hr time horizon... +2026-04-29 09:54:48,287 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 12 hr time horizon... +2026-04-29 09:54:48,307 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 18 hr time horizon... +2026-04-29 09:54:48,332 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:49,443 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:49,467 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:49,619 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 15 hr time horizon... +2026-04-29 09:54:49,646 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:50,006 - __main__ - INFO - Finished processing 2018-01-09 06:00:00 17 hr time horizon... +2026-04-29 09:54:50,030 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:52,270 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 12 hr time horizon... +2026-04-29 09:54:52,293 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 3 hr time horizon... +2026-04-29 09:54:52,322 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 14 hr time horizon... +2026-04-29 09:54:52,345 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:52,469 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 18 hr time horizon... +2026-04-29 09:54:52,492 - __main__ - INFO - Processing values: 2018-01-25 00:00:00 11 hr time horizon... +2026-04-29 09:54:52,497 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 17 hr time horizon... +2026-04-29 09:54:52,522 - __main__ - INFO - Processing values: 2018-01-07 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:53,815 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:53,836 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:56,035 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:56,066 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:56,307 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 12 hr time horizon... +2026-04-29 09:54:56,327 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:57,491 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 7 hr time horizon... +2026-04-29 09:54:57,520 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:57,616 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:57,643 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:58,147 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 13 hr time horizon... +2026-04-29 09:54:58,169 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:58,375 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 3 hr time horizon... +2026-04-29 09:54:58,397 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:54:59,022 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 2 hr time horizon... +2026-04-29 09:54:59,043 - __main__ - INFO - Processing values: 2018-01-25 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:01,269 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 18 hr time horizon... +2026-04-29 09:55:01,290 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:01,881 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 14 hr time horizon... +2026-04-29 09:55:01,902 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:03,363 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:03,390 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:03,859 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 18 hr time horizon... +2026-04-29 09:55:03,879 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:04,444 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 6 hr time horizon... +2026-04-29 09:55:04,461 - __main__ - INFO - Processing values: 2018-01-20 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:04,807 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 6 hr time horizon... +2026-04-29 09:55:04,825 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:05,165 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 17 hr time horizon... +2026-04-29 09:55:05,185 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:07,031 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:07,048 - __main__ - INFO - Processing values: 2018-01-15 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:08,042 - __main__ - INFO - Finished processing 2018-01-07 23:00:00 6 hr time horizon... +2026-04-29 09:55:08,066 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 8 hr time horizon... +2026-04-29 09:55:08,071 - __main__ - INFO - Finished processing 2018-01-25 00:00:00 11 hr time horizon... +2026-04-29 09:55:08,094 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:08,969 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 10 hr time horizon... +2026-04-29 09:55:08,989 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:09,775 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 13 hr time horizon... +2026-04-29 09:55:09,800 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:10,718 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 18 hr time horizon... +2026-04-29 09:55:10,742 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:12,573 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 13 hr time horizon... +2026-04-29 09:55:12,606 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:13,094 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 3 hr time horizon... +2026-04-29 09:55:13,113 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:13,707 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 3 hr time horizon... +2026-04-29 09:55:13,734 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 8 hr time horizon... +2026-04-29 09:55:13,811 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 3 hr time horizon... +2026-04-29 09:55:13,834 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 17 hr time horizon... +2026-04-29 09:55:13,913 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:13,933 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 12 hr time horizon... +2026-04-29 09:55:14,000 - __main__ - INFO - Finished processing 2018-01-25 05:00:00 1 hr time horizon... +2026-04-29 09:55:14,016 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:16,901 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:16,924 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:17,500 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 16 hr time horizon... +2026-04-29 09:55:17,524 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:18,453 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 17 hr time horizon... +2026-04-29 09:55:18,475 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 12 hr time horizon... +2026-04-29 09:55:18,489 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 4 hr time horizon... +2026-04-29 09:55:18,507 - __main__ - INFO - Processing values: 2018-01-18 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:19,003 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 17 hr time horizon... +2026-04-29 09:55:19,029 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:19,950 - __main__ - INFO - Finished processing 2018-01-20 18:00:00 6 hr time horizon... +2026-04-29 09:55:19,972 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:20,741 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 9 hr time horizon... +2026-04-29 09:55:20,764 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 6 hr time horizon... +2026-04-29 09:55:20,880 - __main__ - INFO - Finished processing 2018-01-15 16:00:00 8 hr time horizon... +2026-04-29 09:55:20,899 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:23,567 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 8 hr time horizon... +2026-04-29 09:55:23,594 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:24,230 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 14 hr time horizon... +2026-04-29 09:55:24,254 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:24,539 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 10 hr time horizon... +2026-04-29 09:55:24,564 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:25,331 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 4 hr time horizon... +2026-04-29 09:55:25,375 - __main__ - INFO - Processing values: 2018-01-28 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:27,111 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 6 hr time horizon... +2026-04-29 09:55:27,136 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:28,594 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 13 hr time horizon... +2026-04-29 09:55:28,624 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:28,875 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 10 hr time horizon... +2026-04-29 09:55:28,900 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:29,508 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 12 hr time horizon... +2026-04-29 09:55:29,533 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:29,908 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 17 hr time horizon... +2026-04-29 09:55:29,934 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:30,039 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 8 hr time horizon... +2026-04-29 09:55:30,062 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:30,624 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 10 hr time horizon... +2026-04-29 09:55:30,647 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:33,062 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 1 hr time horizon... +2026-04-29 09:55:33,086 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 17 hr time horizon... +2026-04-29 09:55:33,202 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 13 hr time horizon... +2026-04-29 09:55:33,224 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:33,404 - __main__ - INFO - Finished processing 2018-01-18 03:00:00 1 hr time horizon... +2026-04-29 09:55:33,429 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:33,852 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 12 hr time horizon... +2026-04-29 09:55:33,874 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 7 hr time horizon... +2026-04-29 09:55:34,289 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 1 hr time horizon... +2026-04-29 09:55:34,309 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:37,481 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 14 hr time horizon... +2026-04-29 09:55:37,513 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:38,567 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 13 hr time horizon... +2026-04-29 09:55:38,589 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:38,611 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:38,636 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:39,497 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 17 hr time horizon... +2026-04-29 09:55:39,517 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 2 hr time horizon... +2026-04-29 09:55:39,570 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 3 hr time horizon... +2026-04-29 09:55:39,591 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:40,435 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 6 hr time horizon... +2026-04-29 09:55:40,455 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:41,366 - __main__ - INFO - Finished processing 2018-01-28 12:00:00 5 hr time horizon... +2026-04-29 09:55:41,387 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 13 hr time horizon... +2026-04-29 09:55:41,391 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 13 hr time horizon... +2026-04-29 09:55:41,414 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:45,745 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 8 hr time horizon... +2026-04-29 09:55:45,761 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:47,200 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 7 hr time horizon... +2026-04-29 09:55:47,218 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:51,487 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 2 hr time horizon... +2026-04-29 09:55:51,504 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:51,605 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:51,624 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:52,268 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 4 hr time horizon... +2026-04-29 09:55:52,286 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:53,005 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 17 hr time horizon... +2026-04-29 09:55:53,025 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:53,168 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:53,191 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 7 hr time horizon... +2026-04-29 09:55:53,233 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 9 hr time horizon... +2026-04-29 09:55:53,255 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 13 hr time horizon... +2026-04-29 09:55:53,366 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 12 hr time horizon... +2026-04-29 09:55:53,395 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:53,494 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 13 hr time horizon... +2026-04-29 09:55:53,520 - __main__ - INFO - Processing values: 2018-01-21 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:53,533 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 2 hr time horizon... +2026-04-29 09:55:53,551 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:54,619 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 13 hr time horizon... +2026-04-29 09:55:54,638 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 15 hr time horizon... +2026-04-29 09:55:54,771 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 10 hr time horizon... +2026-04-29 09:55:54,795 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:57,239 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 18 hr time horizon... +2026-04-29 09:55:57,264 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:58,569 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 16 hr time horizon... +2026-04-29 09:55:58,587 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:55:59,280 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 7 hr time horizon... +2026-04-29 09:55:59,297 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:04,352 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 7 hr time horizon... +2026-04-29 09:56:04,373 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:04,919 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:04,941 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:05,795 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:05,820 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:05,917 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 7 hr time horizon... +2026-04-29 09:56:05,937 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:06,130 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 13 hr time horizon... +2026-04-29 09:56:06,149 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:06,602 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 13 hr time horizon... +2026-04-29 09:56:06,622 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:06,696 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 5 hr time horizon... +2026-04-29 09:56:06,715 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:06,872 - __main__ - INFO - Finished processing 2018-01-21 05:00:00 13 hr time horizon... +2026-04-29 09:56:06,891 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:07,017 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 1 hr time horizon... +2026-04-29 09:56:07,036 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 4 hr time horizon... +2026-04-29 09:56:07,419 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 4 hr time horizon... +2026-04-29 09:56:07,433 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 9 hr time horizon... +2026-04-29 09:56:07,578 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 15 hr time horizon... +2026-04-29 09:56:07,595 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:11,705 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 11 hr time horizon... +2026-04-29 09:56:11,725 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:12,433 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 8 hr time horizon... +2026-04-29 09:56:12,452 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:12,926 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 8 hr time horizon... +2026-04-29 09:56:12,946 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:14,823 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 18 hr time horizon... +2026-04-29 09:56:14,843 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:17,446 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 12 hr time horizon... +2026-04-29 09:56:17,469 - __main__ - INFO - Processing values: 2018-01-02 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:17,719 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:17,741 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:17,842 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 3 hr time horizon... +2026-04-29 09:56:17,864 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:18,888 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:18,911 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:19,024 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:19,046 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:19,303 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:19,330 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,148 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,169 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,487 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 17 hr time horizon... +2026-04-29 09:56:20,516 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,617 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 9 hr time horizon... +2026-04-29 09:56:20,638 - __main__ - INFO - Processing values: 2018-01-17 02:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,812 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 5 hr time horizon... +2026-04-29 09:56:20,835 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:20,948 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 14 hr time horizon... +2026-04-29 09:56:20,975 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 10 hr time horizon... +2026-04-29 09:56:21,366 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 4 hr time horizon... +2026-04-29 09:56:21,391 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 14 hr time horizon... +2026-04-29 09:56:21,460 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 9 hr time horizon... +2026-04-29 09:56:21,478 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 1 hr time horizon... +2026-04-29 09:56:21,524 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 14 hr time horizon... +2026-04-29 09:56:21,543 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:25,731 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 9 hr time horizon... +2026-04-29 09:56:25,752 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:26,703 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:26,728 - __main__ - INFO - Processing values: 2018-01-19 11:00:00 3 hr time horizon... +2026-04-29 09:56:27,029 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 8 hr time horizon... +2026-04-29 09:56:27,050 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:28,780 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 18 hr time horizon... +2026-04-29 09:56:28,799 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:31,590 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 15 hr time horizon... +2026-04-29 09:56:31,617 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:31,645 - __main__ - INFO - Finished processing 2018-01-02 09:00:00 9 hr time horizon... +2026-04-29 09:56:31,666 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:32,841 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 2 hr time horizon... +2026-04-29 09:56:32,861 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:32,963 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 8 hr time horizon... +2026-04-29 09:56:32,986 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:34,504 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 2 hr time horizon... +2026-04-29 09:56:34,530 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:56:34,683 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:34,711 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:34,790 - __main__ - INFO - Finished processing 2018-01-17 02:00:00 17 hr time horizon... +2026-04-29 09:56:34,815 - __main__ - INFO - Processing values: 2018-01-13 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:34,993 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 10 hr time horizon... +2026-04-29 09:56:35,015 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:35,079 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 12 hr time horizon... +2026-04-29 09:56:35,100 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:35,276 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 11 hr time horizon... +2026-04-29 09:56:35,303 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:35,397 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 1 hr time horizon... +2026-04-29 09:56:35,423 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:35,849 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 8 hr time horizon... +2026-04-29 09:56:35,870 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 2 hr time horizon... +2026-04-29 09:56:35,916 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 14 hr time horizon... +2026-04-29 09:56:35,937 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:37,143 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 3 hr time horizon... +2026-04-29 09:56:37,164 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:40,612 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 9 hr time horizon... +2026-04-29 09:56:40,635 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:41,873 - __main__ - INFO - Finished processing 2018-01-19 11:00:00 3 hr time horizon... +2026-04-29 09:56:41,894 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 3 hr time horizon... +2026-04-29 09:56:42,093 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 18 hr time horizon... +2026-04-29 09:56:42,115 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:45,155 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 15 hr time horizon... +2026-04-29 09:56:45,176 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:45,955 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 14 hr time horizon... +2026-04-29 09:56:45,974 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:46,640 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 18 hr time horizon... +2026-04-29 09:56:46,667 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:47,557 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 6 hr time horizon... +2026-04-29 09:56:47,583 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:48,160 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 9 hr time horizon... +2026-04-29 09:56:48,182 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:49,616 - __main__ - INFO - Finished processing 2018-01-13 00:00:00 3 hr time horizon... +2026-04-29 09:56:49,636 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:49,703 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 1 hr time horizon... +2026-04-29 09:56:49,724 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:49,786 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 7 hr time horizon... +2026-04-29 09:56:49,808 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:50,314 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 7 hr time horizon... +2026-04-29 09:56:50,338 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 12 hr time horizon... +2026-04-29 09:56:50,366 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 15 hr time horizon... +2026-04-29 09:56:50,389 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:50,520 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 11 hr time horizon... +2026-04-29 09:56:50,539 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 1 hr time horizon... +2026-04-29 09:56:50,551 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 2 hr time horizon... +2026-04-29 09:56:50,572 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 1 hr time horizon... +2026-04-29 09:56:50,649 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:50,670 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:51,039 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 6 hr time horizon... +2026-04-29 09:56:51,060 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:52,574 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 12 hr time horizon... +2026-04-29 09:56:52,601 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:53,476 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 7 hr time horizon... +2026-04-29 09:56:53,502 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:55,899 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:55,928 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:57,105 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 3 hr time horizon... +2026-04-29 09:56:57,125 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:56:58,052 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 6 hr time horizon... +2026-04-29 09:56:58,078 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:01,900 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 4 hr time horizon... +2026-04-29 09:57:01,927 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 10 hr time horizon... +2026-04-29 09:57:01,958 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 11 hr time horizon... +2026-04-29 09:57:01,980 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:02,128 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 5 hr time horizon... +2026-04-29 09:57:02,149 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:02,383 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 3 hr time horizon... +2026-04-29 09:57:02,406 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:03,285 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:03,314 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:04,054 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 1 hr time horizon... +2026-04-29 09:57:04,072 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:05,536 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:05,563 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 11 hr time horizon... +2026-04-29 09:57:05,564 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 18 hr time horizon... +2026-04-29 09:57:05,592 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:05,843 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 10 hr time horizon... +2026-04-29 09:57:05,868 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:06,093 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 1 hr time horizon... +2026-04-29 09:57:06,112 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 8 hr time horizon... +2026-04-29 09:57:06,136 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 12 hr time horizon... +2026-04-29 09:57:06,160 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:06,268 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 16 hr time horizon... +2026-04-29 09:57:06,290 - __main__ - INFO - Processing values: 2018-01-04 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:06,440 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 10 hr time horizon... +2026-04-29 09:57:06,460 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:06,961 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 16 hr time horizon... +2026-04-29 09:57:06,981 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:07,722 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 5 hr time horizon... +2026-04-29 09:57:07,739 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:08,663 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 8 hr time horizon... +2026-04-29 09:57:08,686 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:11,000 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 10 hr time horizon... +2026-04-29 09:57:11,022 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:12,030 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 16 hr time horizon... +2026-04-29 09:57:12,051 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:13,713 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 17 hr time horizon... +2026-04-29 09:57:13,742 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:15,712 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 10 hr time horizon... +2026-04-29 09:57:15,735 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:16,695 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 13 hr time horizon... +2026-04-29 09:57:16,722 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:16,772 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 12 hr time horizon... +2026-04-29 09:57:16,795 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:17,214 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 15 hr time horizon... +2026-04-29 09:57:17,236 - __main__ - INFO - Processing values: 2018-01-12 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:17,677 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:17,698 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:18,166 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:18,186 - __main__ - INFO - Processing values: 2018-01-16 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:19,199 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:19,218 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:20,058 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 8 hr time horizon... +2026-04-29 09:57:20,077 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:20,633 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 4 hr time horizon... +2026-04-29 09:57:20,659 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:20,730 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:20,755 - __main__ - INFO - Processing values: 2018-01-27 20:00:00 3 hr time horizon... +2026-04-29 09:57:20,814 - __main__ - INFO - Finished processing 2018-01-04 21:00:00 10 hr time horizon... +2026-04-29 09:57:20,835 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:21,013 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:21,041 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:22,086 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 16 hr time horizon... +2026-04-29 09:57:22,108 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 4 hr time horizon... +2026-04-29 09:57:22,142 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 8 hr time horizon... +2026-04-29 09:57:22,168 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:23,414 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:23,437 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 12 hr time horizon... +2026-04-29 09:57:23,587 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 2 hr time horizon... +2026-04-29 09:57:23,609 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:25,202 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 14 hr time horizon... +2026-04-29 09:57:25,222 - __main__ - INFO - Processing values: 2018-01-03 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:26,702 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 16 hr time horizon... +2026-04-29 09:57:26,723 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:28,438 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 1 hr time horizon... +2026-04-29 09:57:28,467 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:30,379 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 9 hr time horizon... +2026-04-29 09:57:30,401 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:30,556 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:30,587 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:31,721 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 9 hr time horizon... +2026-04-29 09:57:31,741 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 16 hr time horizon... +2026-04-29 09:57:31,827 - __main__ - INFO - Finished processing 2018-01-12 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:31,858 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:32,076 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:32,100 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:32,459 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 10 hr time horizon... +2026-04-29 09:57:32,481 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:32,782 - __main__ - INFO - Finished processing 2018-01-16 18:00:00 12 hr time horizon... +2026-04-29 09:57:32,808 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:34,332 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 1 hr time horizon... +2026-04-29 09:57:34,350 - __main__ - INFO - Processing values: 2018-01-17 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:34,986 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 14 hr time horizon... +2026-04-29 09:57:35,016 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:35,030 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 3 hr time horizon... +2026-04-29 09:57:35,055 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:35,322 - __main__ - INFO - Finished processing 2018-01-27 20:00:00 3 hr time horizon... +2026-04-29 09:57:35,348 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:35,560 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 18 hr time horizon... +2026-04-29 09:57:35,586 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:37,068 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 14 hr time horizon... +2026-04-29 09:57:37,092 - __main__ - INFO - Processing values: 2018-01-22 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:37,692 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 4 hr time horizon... +2026-04-29 09:57:37,715 - __main__ - INFO - Processing values: 2018-01-28 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:37,844 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 12 hr time horizon... +2026-04-29 09:57:37,867 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:38,547 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 6 hr time horizon... +2026-04-29 09:57:38,570 - __main__ - INFO - Processing values: 2018-01-02 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:39,650 - __main__ - INFO - Finished processing 2018-01-03 06:00:00 1 hr time horizon... +2026-04-29 09:57:39,672 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:41,569 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 18 hr time horizon... +2026-04-29 09:57:41,595 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:43,840 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 18 hr time horizon... +2026-04-29 09:57:43,861 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:45,513 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 7 hr time horizon... +2026-04-29 09:57:45,535 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:45,768 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 15 hr time horizon... +2026-04-29 09:57:45,787 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:46,920 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 12 hr time horizon... +2026-04-29 09:57:46,946 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,176 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,197 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,366 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 16 hr time horizon... +2026-04-29 09:57:47,394 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,510 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,536 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:47,933 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 2 hr time horizon... +2026-04-29 09:57:47,955 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:49,760 - __main__ - INFO - Finished processing 2018-01-17 12:00:00 3 hr time horizon... +2026-04-29 09:57:49,785 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:50,100 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 1 hr time horizon... +2026-04-29 09:57:50,121 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:50,199 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 8 hr time horizon... +2026-04-29 09:57:50,220 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:50,281 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 4 hr time horizon... +2026-04-29 09:57:50,302 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:51,167 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 17 hr time horizon... +2026-04-29 09:57:51,191 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:52,839 - __main__ - INFO - Finished processing 2018-01-22 00:00:00 7 hr time horizon... +2026-04-29 09:57:52,862 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:54,054 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 12 hr time horizon... +2026-04-29 09:57:54,076 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 15 hr time horizon... +2026-04-29 09:57:54,184 - __main__ - INFO - Finished processing 2018-01-02 07:00:00 5 hr time horizon... +2026-04-29 09:57:54,203 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:54,631 - __main__ - INFO - Finished processing 2018-01-28 09:00:00 2 hr time horizon... +2026-04-29 09:57:54,652 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:56,161 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 12 hr time horizon... +2026-04-29 09:57:56,184 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:57,989 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:58,016 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:57:59,615 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 2 hr time horizon... +2026-04-29 09:57:59,639 - __main__ - INFO - Processing values: 2018-01-11 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:00,223 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 6 hr time horizon... +2026-04-29 09:58:00,246 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:01,770 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 15 hr time horizon... +2026-04-29 09:58:01,795 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:01,869 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:01,889 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:01,941 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 10 hr time horizon... +2026-04-29 09:58:01,964 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:03,490 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 13 hr time horizon... +2026-04-29 09:58:03,524 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:04,449 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:04,478 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:04,619 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:04,643 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:58:04,775 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:04,799 - __main__ - INFO - Processing values: 2018-01-30 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:05,080 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 7 hr time horizon... +2026-04-29 09:58:05,100 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 3 hr time horizon... +2026-04-29 09:58:05,112 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 12 hr time horizon... +2026-04-29 09:58:05,131 - __main__ - INFO - Processing values: 2018-01-18 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:05,211 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 2 hr time horizon... +2026-04-29 09:58:05,230 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:06,107 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 6 hr time horizon... +2026-04-29 09:58:06,134 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:07,311 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 3 hr time horizon... +2026-04-29 09:58:07,333 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:09,532 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 8 hr time horizon... +2026-04-29 09:58:09,556 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:09,815 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:09,843 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:10,394 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 9 hr time horizon... +2026-04-29 09:58:10,420 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:10,943 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:10,964 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:12,717 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 8 hr time horizon... +2026-04-29 09:58:12,738 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:15,158 - __main__ - INFO - Finished processing 2018-01-11 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:15,185 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:16,794 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 14 hr time horizon... +2026-04-29 09:58:16,820 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:17,588 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 11 hr time horizon... +2026-04-29 09:58:17,623 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:17,912 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 9 hr time horizon... +2026-04-29 09:58:17,940 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 7 hr time horizon... +2026-04-29 09:58:17,940 - __main__ - INFO - Finished processing 2018-01-07 18:00:00 12 hr time horizon... +2026-04-29 09:58:17,975 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:20,273 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 6 hr time horizon... +2026-04-29 09:58:20,302 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:20,344 - __main__ - INFO - Finished processing 2018-01-30 10:00:00 5 hr time horizon... +2026-04-29 09:58:20,364 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:20,429 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 8 hr time horizon... +2026-04-29 09:58:20,451 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 1 hr time horizon... +2026-04-29 09:58:20,739 - __main__ - INFO - Finished processing 2018-01-18 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:20,761 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:20,888 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 3 hr time horizon... +2026-04-29 09:58:20,911 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 1 hr time horizon... +2026-04-29 09:58:21,003 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 3 hr time horizon... +2026-04-29 09:58:21,026 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:22,162 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 2 hr time horizon... +2026-04-29 09:58:22,185 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:23,783 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 17 hr time horizon... +2026-04-29 09:58:23,809 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:25,735 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 16 hr time horizon... +2026-04-29 09:58:25,756 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:25,856 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 12 hr time horizon... +2026-04-29 09:58:25,881 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:26,420 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:26,453 - __main__ - INFO - Processing values: 2018-01-28 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:27,455 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 11 hr time horizon... +2026-04-29 09:58:27,477 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:29,375 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 8 hr time horizon... +2026-04-29 09:58:29,398 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:31,241 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 14 hr time horizon... +2026-04-29 09:58:31,270 - __main__ - INFO - Processing values: 2018-01-21 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:32,278 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 15 hr time horizon... +2026-04-29 09:58:32,302 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:32,603 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 12 hr time horizon... +2026-04-29 09:58:32,625 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:33,128 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 1 hr time horizon... +2026-04-29 09:58:33,148 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:33,288 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:33,309 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:33,387 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 17 hr time horizon... +2026-04-29 09:58:33,411 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:34,006 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 4 hr time horizon... +2026-04-29 09:58:34,029 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:35,556 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 1 hr time horizon... +2026-04-29 09:58:35,576 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:35,724 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 1 hr time horizon... +2026-04-29 09:58:35,743 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:36,082 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 8 hr time horizon... +2026-04-29 09:58:36,103 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:36,228 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 13 hr time horizon... +2026-04-29 09:58:36,255 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:36,875 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 16 hr time horizon... +2026-04-29 09:58:36,902 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:37,525 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 12 hr time horizon... +2026-04-29 09:58:37,548 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:40,712 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:40,739 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:41,036 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 12 hr time horizon... +2026-04-29 09:58:41,055 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:41,520 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 3 hr time horizon... +2026-04-29 09:58:41,541 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:42,469 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 1 hr time horizon... +2026-04-29 09:58:42,499 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 17 hr time horizon... +2026-04-29 09:58:42,624 - __main__ - INFO - Finished processing 2018-01-28 02:00:00 13 hr time horizon... +2026-04-29 09:58:42,648 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:45,684 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 4 hr time horizon... +2026-04-29 09:58:45,711 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:46,795 - __main__ - INFO - Finished processing 2018-01-21 02:00:00 7 hr time horizon... +2026-04-29 09:58:46,818 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:47,905 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 15 hr time horizon... +2026-04-29 09:58:47,929 - __main__ - INFO - Processing values: 2018-01-29 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:48,102 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 6 hr time horizon... +2026-04-29 09:58:48,127 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:48,386 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 18 hr time horizon... +2026-04-29 09:58:48,408 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:48,631 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 7 hr time horizon... +2026-04-29 09:58:48,654 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:49,806 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 18 hr time horizon... +2026-04-29 09:58:49,832 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:51,335 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 15 hr time horizon... +2026-04-29 09:58:51,362 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:51,665 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 9 hr time horizon... +2026-04-29 09:58:51,687 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:51,780 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 17 hr time horizon... +2026-04-29 09:58:51,803 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 16 hr time horizon... +2026-04-29 09:58:51,835 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 9 hr time horizon... +2026-04-29 09:58:51,855 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:51,968 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 8 hr time horizon... +2026-04-29 09:58:51,990 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:52,284 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 1 hr time horizon... +2026-04-29 09:58:52,302 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:53,144 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 7 hr time horizon... +2026-04-29 09:58:53,167 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:56,720 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 10 hr time horizon... +2026-04-29 09:58:56,742 - __main__ - INFO - Processing values: 2018-01-16 05:00:00 3 hr time horizon... +2026-04-29 09:58:56,745 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 12 hr time horizon... +2026-04-29 09:58:56,765 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:56,942 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 7 hr time horizon... +2026-04-29 09:58:56,963 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:57,779 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 17 hr time horizon... +2026-04-29 09:58:57,801 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:58:58,754 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 9 hr time horizon... +2026-04-29 09:58:58,776 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:01,475 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 8 hr time horizon... +2026-04-29 09:59:01,500 - __main__ - INFO - Processing values: 2018-01-06 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:01,775 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:01,805 - __main__ - INFO - Processing values: 2018-01-22 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:02,443 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:02,467 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:02,644 - __main__ - INFO - Finished processing 2018-01-29 15:00:00 11 hr time horizon... +2026-04-29 09:59:02,667 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:03,198 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 6 hr time horizon... +2026-04-29 09:59:03,224 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:03,449 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 4 hr time horizon... +2026-04-29 09:59:03,470 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:04,462 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 1 hr time horizon... +2026-04-29 09:59:04,488 - __main__ - INFO - Processing values: 2018-01-12 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:06,021 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:06,043 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:06,718 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 5 hr time horizon... +2026-04-29 09:59:06,743 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:06,930 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 16 hr time horizon... +2026-04-29 09:59:06,955 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 9 hr time horizon... +2026-04-29 09:59:06,968 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 9 hr time horizon... +2026-04-29 09:59:06,990 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:08,244 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 15 hr time horizon... +2026-04-29 09:59:08,268 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 18 hr time horizon... +2026-04-29 09:59:08,433 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 16 hr time horizon... +2026-04-29 09:59:08,456 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 14 hr time horizon... +2026-04-29 09:59:08,654 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 8 hr time horizon... +2026-04-29 09:59:08,674 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:11,897 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 4 hr time horizon... +2026-04-29 09:59:11,916 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:12,692 - __main__ - INFO - Finished processing 2018-01-16 05:00:00 3 hr time horizon... +2026-04-29 09:59:12,714 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:13,266 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 17 hr time horizon... +2026-04-29 09:59:13,287 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:14,429 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 4 hr time horizon... +2026-04-29 09:59:14,452 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:15,462 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 11 hr time horizon... +2026-04-29 09:59:15,485 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:16,939 - __main__ - INFO - Finished processing 2018-01-06 17:00:00 3 hr time horizon... +2026-04-29 09:59:16,971 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:17,440 - __main__ - INFO - Finished processing 2018-01-22 04:00:00 10 hr time horizon... +2026-04-29 09:59:17,463 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 5 hr time horizon... +2026-04-29 09:59:17,648 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:17,669 - __main__ - INFO - Processing values: 2018-01-17 20:00:00 11 hr time horizon... +2026-04-29 09:59:17,697 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:17,719 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:19,014 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 6 hr time horizon... +2026-04-29 09:59:19,036 - __main__ - INFO - Processing values: 2018-01-25 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:19,144 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 9 hr time horizon... +2026-04-29 09:59:19,167 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:20,404 - __main__ - INFO - Finished processing 2018-01-12 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:20,425 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:22,007 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 6 hr time horizon... +2026-04-29 09:59:22,036 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:22,178 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 2 hr time horizon... +2026-04-29 09:59:22,201 - __main__ - INFO - Processing values: 2018-01-16 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:22,490 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 9 hr time horizon... +2026-04-29 09:59:22,513 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:22,781 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 16 hr time horizon... +2026-04-29 09:59:22,803 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:23,488 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 2 hr time horizon... +2026-04-29 09:59:23,511 - __main__ - INFO - Processing values: 2018-01-05 12:00:00 3 hr time horizon... +2026-04-29 09:59:23,816 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 14 hr time horizon... +2026-04-29 09:59:23,842 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 5 hr time horizon... +2026-04-29 09:59:24,052 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 18 hr time horizon... +2026-04-29 09:59:24,080 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:27,029 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 14 hr time horizon... +2026-04-29 09:59:27,057 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:28,141 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 1 hr time horizon... +2026-04-29 09:59:28,163 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:28,756 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 9 hr time horizon... +2026-04-29 09:59:28,781 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:29,702 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 17 hr time horizon... +2026-04-29 09:59:29,725 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:30,557 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 1 hr time horizon... +2026-04-29 09:59:30,579 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:32,630 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:32,659 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:32,836 - __main__ - INFO - Finished processing 2018-01-17 20:00:00 11 hr time horizon... +2026-04-29 09:59:32,858 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 09:59:33,290 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:33,319 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:34,011 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 7 hr time horizon... +2026-04-29 09:59:34,035 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:34,092 - __main__ - INFO - Finished processing 2018-01-25 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:34,120 - __main__ - INFO - Processing values: 2018-01-09 23:00:00 13 hr time horizon... +2026-04-29 09:59:34,184 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 5 hr time horizon... +2026-04-29 09:59:34,210 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:36,311 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 16 hr time horizon... +2026-04-29 09:59:36,339 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:36,361 - __main__ - INFO - Finished processing 2018-01-16 13:00:00 14 hr time horizon... +2026-04-29 09:59:36,383 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:37,376 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 7 hr time horizon... +2026-04-29 09:59:37,397 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:38,189 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 6 hr time horizon... +2026-04-29 09:59:38,215 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:39,138 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 5 hr time horizon... +2026-04-29 09:59:39,167 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:39,298 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 11 hr time horizon... +2026-04-29 09:59:39,324 - __main__ - INFO - Processing values: 2018-01-27 11:00:00 16 hr time horizon... +2026-04-29 09:59:39,402 - __main__ - INFO - Finished processing 2018-01-05 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:39,430 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:40,960 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:40,996 - __main__ - INFO - Processing values: 2018-01-21 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:41,962 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 3 hr time horizon... +2026-04-29 09:59:41,983 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:43,563 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 7 hr time horizon... +2026-04-29 09:59:43,586 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:44,704 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 18 hr time horizon... +2026-04-29 09:59:44,726 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 12 hr time horizon... +2026-04-29 09:59:44,890 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 14 hr time horizon... +2026-04-29 09:59:44,913 - __main__ - INFO - Processing values: 2018-01-13 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:45,170 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 9 hr time horizon... +2026-04-29 09:59:45,191 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:47,817 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 10 hr time horizon... +2026-04-29 09:59:47,839 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:49,018 - __main__ - INFO - Finished processing 2018-01-01 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:49,044 - __main__ - INFO - Processing values: 2018-01-21 11:00:00 13 hr time horizon... +2026-04-29 09:59:49,149 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 2 hr time horizon... +2026-04-29 09:59:49,154 - __main__ - INFO - Finished processing 2018-01-09 23:00:00 13 hr time horizon... +2026-04-29 09:59:49,182 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 13 hr time horizon... +2026-04-29 09:59:49,190 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:49,256 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:49,275 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:50,941 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 14 hr time horizon... +2026-04-29 09:59:50,963 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:51,611 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 9 hr time horizon... +2026-04-29 09:59:51,637 - __main__ - INFO - Processing values: 2018-01-05 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:51,868 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 16 hr time horizon... +2026-04-29 09:59:51,893 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:53,228 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:53,254 - __main__ - INFO - Processing values: 2018-01-12 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:54,195 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:54,220 - __main__ - INFO - Processing values: 2018-01-24 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:54,695 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 3 hr time horizon... +2026-04-29 09:59:54,720 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:55,277 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 15 hr time horizon... +2026-04-29 09:59:55,301 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 7 hr time horizon... +2026-04-29 09:59:55,434 - __main__ - INFO - Finished processing 2018-01-21 07:00:00 16 hr time horizon... +2026-04-29 09:59:55,456 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:55,586 - __main__ - INFO - Finished processing 2018-01-27 11:00:00 16 hr time horizon... +2026-04-29 09:59:55,610 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:57,704 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 4 hr time horizon... +2026-04-29 09:59:57,729 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:59,021 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 1 hr time horizon... +2026-04-29 09:59:59,042 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 09:59:59,210 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 10 hr time horizon... +2026-04-29 09:59:59,229 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:00,062 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 12 hr time horizon... +2026-04-29 10:00:00,084 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 14 hr time horizon... +2026-04-29 10:00:00,147 - __main__ - INFO - Finished processing 2018-01-13 13:00:00 5 hr time horizon... +2026-04-29 10:00:00,165 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:03,154 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:03,176 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:03,974 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 9 hr time horizon... +2026-04-29 10:00:03,992 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:04,121 - __main__ - INFO - Finished processing 2018-01-21 11:00:00 13 hr time horizon... +2026-04-29 10:00:04,141 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 13 hr time horizon... +2026-04-29 10:00:04,194 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 13 hr time horizon... +2026-04-29 10:00:04,215 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:04,624 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:04,644 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 6 hr time horizon... +2026-04-29 10:00:04,705 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 2 hr time horizon... +2026-04-29 10:00:04,723 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:05,997 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 4 hr time horizon... +2026-04-29 10:00:06,017 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:06,517 - __main__ - INFO - Finished processing 2018-01-05 03:00:00 10 hr time horizon... +2026-04-29 10:00:06,539 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:07,468 - __main__ - INFO - Finished processing 2018-01-12 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:07,502 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:09,216 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 7 hr time horizon... +2026-04-29 10:00:09,243 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 18 hr time horizon... +2026-04-29 10:00:09,300 - __main__ - INFO - Finished processing 2018-01-24 08:00:00 18 hr time horizon... +2026-04-29 10:00:09,324 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:10,168 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 4 hr time horizon... +2026-04-29 10:00:10,190 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:10,635 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:10,660 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:11,254 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 1 hr time horizon... +2026-04-29 10:00:11,270 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:13,340 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 13 hr time horizon... +2026-04-29 10:00:13,367 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:13,703 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 17 hr time horizon... +2026-04-29 10:00:13,730 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:13,978 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 14 hr time horizon... +2026-04-29 10:00:14,000 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:14,708 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 14 hr time horizon... +2026-04-29 10:00:14,731 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 11 hr time horizon... +2026-04-29 10:00:15,049 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 17 hr time horizon... +2026-04-29 10:00:15,073 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:18,416 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 1 hr time horizon... +2026-04-29 10:00:18,447 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:19,069 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 3 hr time horizon... +2026-04-29 10:00:19,090 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:19,552 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 6 hr time horizon... +2026-04-29 10:00:19,579 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:19,808 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 8 hr time horizon... +2026-04-29 10:00:19,834 - __main__ - INFO - Processing values: 2018-01-21 22:00:00 5 hr time horizon... +2026-04-29 10:00:19,886 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 13 hr time horizon... +2026-04-29 10:00:19,909 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:20,122 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 2 hr time horizon... +2026-04-29 10:00:20,146 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:22,155 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 13 hr time horizon... +2026-04-29 10:00:22,176 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 18 hr time horizon... +2026-04-29 10:00:22,218 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 11 hr time horizon... +2026-04-29 10:00:22,236 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:24,684 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 18 hr time horizon... +2026-04-29 10:00:24,708 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:25,073 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:25,097 - __main__ - INFO - Processing values: 2018-01-08 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:26,019 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:26,040 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 17 hr time horizon... +2026-04-29 10:00:26,118 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 10 hr time horizon... +2026-04-29 10:00:26,142 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:26,464 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 4 hr time horizon... +2026-04-29 10:00:26,482 - __main__ - INFO - Processing values: 2018-01-01 02:00:00 4 hr time horizon... +2026-04-29 10:00:26,638 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 7 hr time horizon... +2026-04-29 10:00:26,665 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:28,665 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 7 hr time horizon... +2026-04-29 10:00:28,683 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:29,488 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 11 hr time horizon... +2026-04-29 10:00:29,507 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:29,815 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 5 hr time horizon... +2026-04-29 10:00:29,836 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:29,983 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 11 hr time horizon... +2026-04-29 10:00:30,002 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:31,705 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 6 hr time horizon... +2026-04-29 10:00:31,730 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:33,199 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 18 hr time horizon... +2026-04-29 10:00:33,228 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:33,490 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 6 hr time horizon... +2026-04-29 10:00:33,516 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:34,826 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 7 hr time horizon... +2026-04-29 10:00:34,847 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:35,155 - __main__ - INFO - Finished processing 2018-01-21 22:00:00 5 hr time horizon... +2026-04-29 10:00:35,178 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:35,283 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 2 hr time horizon... +2026-04-29 10:00:35,303 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 9 hr time horizon... +2026-04-29 10:00:35,330 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 10 hr time horizon... +2026-04-29 10:00:35,354 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:36,906 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 18 hr time horizon... +2026-04-29 10:00:36,930 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:39,989 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:40,011 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:40,446 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 17 hr time horizon... +2026-04-29 10:00:40,469 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:40,585 - __main__ - INFO - Finished processing 2018-01-01 02:00:00 4 hr time horizon... +2026-04-29 10:00:40,601 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 16 hr time horizon... +2026-04-29 10:00:40,627 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 16 hr time horizon... +2026-04-29 10:00:40,648 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:41,074 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 16 hr time horizon... +2026-04-29 10:00:41,101 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:42,803 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 17 hr time horizon... +2026-04-29 10:00:42,837 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:44,280 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 6 hr time horizon... +2026-04-29 10:00:44,298 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:44,509 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 7 hr time horizon... +2026-04-29 10:00:44,526 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:44,799 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 3 hr time horizon... +2026-04-29 10:00:44,822 - __main__ - INFO - Processing values: 2018-01-14 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:44,910 - __main__ - INFO - Finished processing 2018-01-08 21:00:00 8 hr time horizon... +2026-04-29 10:00:44,936 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:47,348 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 3 hr time horizon... +2026-04-29 10:00:47,366 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:48,165 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 6 hr time horizon... +2026-04-29 10:00:48,184 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:49,063 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 6 hr time horizon... +2026-04-29 10:00:49,082 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 11 hr time horizon... +2026-04-29 10:00:49,238 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 12 hr time horizon... +2026-04-29 10:00:49,261 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:50,942 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 7 hr time horizon... +2026-04-29 10:00:50,961 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:54,007 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 5 hr time horizon... +2026-04-29 10:00:54,031 - __main__ - INFO - Processing values: 2018-01-24 02:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:54,308 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 9 hr time horizon... +2026-04-29 10:00:54,325 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:55,179 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 9 hr time horizon... +2026-04-29 10:00:55,206 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:55,268 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 7 hr time horizon... +2026-04-29 10:00:55,286 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:55,789 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 16 hr time horizon... +2026-04-29 10:00:55,809 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:57,998 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 18 hr time horizon... +2026-04-29 10:00:58,017 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:00:59,790 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 10 hr time horizon... +2026-04-29 10:00:59,836 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:00,025 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:01:00,048 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:00,297 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 3 hr time horizon... +2026-04-29 10:01:00,318 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:01,276 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 10 hr time horizon... +2026-04-29 10:01:01,297 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:01,500 - __main__ - INFO - Finished processing 2018-01-14 12:00:00 16 hr time horizon... +2026-04-29 10:01:01,519 - __main__ - INFO - Processing values: 2018-01-19 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:02,091 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 9 hr time horizon... +2026-04-29 10:01:02,111 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:02,627 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 12 hr time horizon... +2026-04-29 10:01:02,652 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:02,922 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 11 hr time horizon... +2026-04-29 10:01:02,942 - __main__ - INFO - Processing values: 2018-01-10 22:00:00 11 hr time horizon... +2026-04-29 10:01:03,010 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 12 hr time horizon... +2026-04-29 10:01:03,030 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:04,139 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 14 hr time horizon... +2026-04-29 10:01:04,158 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:06,651 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:06,686 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:07,511 - __main__ - INFO - Finished processing 2018-01-24 02:00:00 3 hr time horizon... +2026-04-29 10:01:07,534 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:08,403 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:08,428 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 16 hr time horizon... +2026-04-29 10:01:08,465 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 15 hr time horizon... +2026-04-29 10:01:08,484 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:09,398 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 3 hr time horizon... +2026-04-29 10:01:09,418 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:10,075 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 15 hr time horizon... +2026-04-29 10:01:10,097 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:12,665 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 17 hr time horizon... +2026-04-29 10:01:12,691 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:13,687 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 7 hr time horizon... +2026-04-29 10:01:13,707 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:13,963 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 15 hr time horizon... +2026-04-29 10:01:13,993 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:14,772 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 15 hr time horizon... +2026-04-29 10:01:14,797 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:15,866 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 8 hr time horizon... +2026-04-29 10:01:15,890 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:16,944 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 4 hr time horizon... +2026-04-29 10:01:16,965 - __main__ - INFO - Processing values: 2018-01-14 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:17,234 - __main__ - INFO - Finished processing 2018-01-19 18:00:00 2 hr time horizon... +2026-04-29 10:01:17,238 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 1 hr time horizon... +2026-04-29 10:01:17,263 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 3 hr time horizon... +2026-04-29 10:01:17,265 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:17,492 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 4 hr time horizon... +2026-04-29 10:01:17,514 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:17,722 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 7 hr time horizon... +2026-04-29 10:01:17,743 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:18,208 - __main__ - INFO - Finished processing 2018-01-10 22:00:00 11 hr time horizon... +2026-04-29 10:01:18,231 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:20,278 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 8 hr time horizon... +2026-04-29 10:01:20,305 - __main__ - INFO - Processing values: 2018-01-22 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:21,567 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:21,598 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:22,752 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:22,783 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:24,488 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 16 hr time horizon... +2026-04-29 10:01:24,511 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:24,630 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 8 hr time horizon... +2026-04-29 10:01:24,650 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 6 hr time horizon... +2026-04-29 10:01:24,710 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 14 hr time horizon... +2026-04-29 10:01:24,730 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:26,013 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 3 hr time horizon... +2026-04-29 10:01:26,033 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:26,345 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 11 hr time horizon... +2026-04-29 10:01:26,367 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:28,526 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 2 hr time horizon... +2026-04-29 10:01:28,549 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:28,801 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 3 hr time horizon... +2026-04-29 10:01:28,823 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:29,744 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 13 hr time horizon... +2026-04-29 10:01:29,774 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:01:30,179 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:30,207 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:31,446 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 5 hr time horizon... +2026-04-29 10:01:31,469 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:32,262 - __main__ - INFO - Finished processing 2018-01-14 17:00:00 2 hr time horizon... +2026-04-29 10:01:32,281 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:32,483 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:32,506 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:33,239 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 15 hr time horizon... +2026-04-29 10:01:33,260 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:33,387 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 3 hr time horizon... +2026-04-29 10:01:33,410 - __main__ - INFO - Processing values: 2018-01-15 21:00:00 10 hr time horizon... +2026-04-29 10:01:33,551 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 15 hr time horizon... +2026-04-29 10:01:33,576 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:34,271 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 13 hr time horizon... +2026-04-29 10:01:34,295 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:36,899 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 18 hr time horizon... +2026-04-29 10:01:36,921 - __main__ - INFO - Processing values: 2018-01-22 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:37,863 - __main__ - INFO - Finished processing 2018-01-22 02:00:00 12 hr time horizon... +2026-04-29 10:01:37,888 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:38,033 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 6 hr time horizon... +2026-04-29 10:01:38,060 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:39,184 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 6 hr time horizon... +2026-04-29 10:01:39,202 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:39,659 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 12 hr time horizon... +2026-04-29 10:01:39,682 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:40,079 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 5 hr time horizon... +2026-04-29 10:01:40,099 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:41,012 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:41,034 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:42,283 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 9 hr time horizon... +2026-04-29 10:01:42,310 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:43,685 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 7 hr time horizon... +2026-04-29 10:01:43,709 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:44,267 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 10 hr time horizon... +2026-04-29 10:01:44,292 - __main__ - INFO - Processing values: 2018-01-09 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:45,932 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:45,954 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:46,487 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 9 hr time horizon... +2026-04-29 10:01:46,506 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:46,748 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 12 hr time horizon... +2026-04-29 10:01:46,779 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:48,603 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 6 hr time horizon... +2026-04-29 10:01:48,621 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 2 hr time horizon... +2026-04-29 10:01:48,689 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 16 hr time horizon... +2026-04-29 10:01:48,707 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:50,723 - __main__ - INFO - Finished processing 2018-01-22 14:00:00 3 hr time horizon... +2026-04-29 10:01:50,744 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:58,194 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 10 hr time horizon... +2026-04-29 10:01:58,214 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:58,642 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 2 hr time horizon... +2026-04-29 10:01:58,662 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:58,732 - __main__ - INFO - Finished processing 2018-01-09 19:00:00 18 hr time horizon... +2026-04-29 10:01:58,753 - __main__ - INFO - Processing values: 2018-01-13 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:01:58,904 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 4 hr time horizon... +2026-04-29 10:01:58,922 - __main__ - INFO - Processing values: 2018-01-05 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:00,134 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 13 hr time horizon... +2026-04-29 10:02:00,153 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:00,291 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 8 hr time horizon... +2026-04-29 10:02:00,310 - __main__ - INFO - Processing values: 2018-01-20 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:02,166 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 13 hr time horizon... +2026-04-29 10:02:02,177 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 2 hr time horizon... +2026-04-29 10:02:02,191 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 18 hr time horizon... +2026-04-29 10:02:02,205 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:03,401 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:03,421 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:04,975 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 12 hr time horizon... +2026-04-29 10:02:04,984 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 3 hr time horizon... +2026-04-29 10:02:04,998 - __main__ - INFO - Processing values: 2018-01-09 17:00:00 7 hr time horizon... +2026-04-29 10:02:05,007 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 1 hr time horizon... +2026-04-29 10:02:05,127 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 6 hr time horizon... +2026-04-29 10:02:05,152 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:08,820 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 10 hr time horizon... +2026-04-29 10:02:08,842 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:11,059 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:11,084 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:12,069 - __main__ - INFO - Finished processing 2018-01-13 05:00:00 7 hr time horizon... +2026-04-29 10:02:12,090 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:12,301 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 3 hr time horizon... +2026-04-29 10:02:12,325 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:12,790 - __main__ - INFO - Finished processing 2018-01-05 18:00:00 12 hr time horizon... +2026-04-29 10:02:12,815 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:13,356 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:13,377 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:02:13,687 - __main__ - INFO - Finished processing 2018-01-20 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:13,715 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:15,547 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 7 hr time horizon... +2026-04-29 10:02:15,573 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:15,877 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 18 hr time horizon... +2026-04-29 10:02:15,903 - __main__ - INFO - Processing values: 2018-01-02 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:15,974 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 12 hr time horizon... +2026-04-29 10:02:15,994 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 3 hr time horizon... +2026-04-29 10:02:16,044 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 18 hr time horizon... +2026-04-29 10:02:16,072 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:17,730 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 1 hr time horizon... +2026-04-29 10:02:17,748 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:18,271 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:18,296 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:18,990 - __main__ - INFO - Finished processing 2018-01-15 21:00:00 10 hr time horizon... +2026-04-29 10:02:19,010 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 9 hr time horizon... +2026-04-29 10:02:19,122 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 13 hr time horizon... +2026-04-29 10:02:19,146 - __main__ - INFO - Processing values: 2018-01-24 08:00:00 13 hr time horizon... +2026-04-29 10:02:19,605 - __main__ - INFO - Finished processing 2018-01-09 17:00:00 7 hr time horizon... +2026-04-29 10:02:19,628 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:22,743 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 13 hr time horizon... +2026-04-29 10:02:22,769 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:24,267 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 5 hr time horizon... +2026-04-29 10:02:24,287 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:26,463 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 15 hr time horizon... +2026-04-29 10:02:26,489 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:26,648 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 11 hr time horizon... +2026-04-29 10:02:26,669 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:26,930 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 13 hr time horizon... +2026-04-29 10:02:26,950 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:28,189 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 1 hr time horizon... +2026-04-29 10:02:28,208 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:28,655 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 3 hr time horizon... +2026-04-29 10:02:28,675 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 6 hr time horizon... +2026-04-29 10:02:28,974 - __main__ - INFO - Finished processing 2018-01-02 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:29,004 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:29,103 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 1 hr time horizon... +2026-04-29 10:02:29,124 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:31,159 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:31,198 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:32,031 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 8 hr time horizon... +2026-04-29 10:02:32,062 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:32,419 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 6 hr time horizon... +2026-04-29 10:02:32,440 - __main__ - INFO - Processing values: 2018-01-18 02:00:00 8 hr time horizon... +2026-04-29 10:02:32,560 - __main__ - INFO - Finished processing 2018-01-24 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:32,581 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:32,666 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 9 hr time horizon... +2026-04-29 10:02:32,687 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:33,001 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:33,019 - __main__ - INFO - Processing values: 2018-01-04 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:33,606 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 18 hr time horizon... +2026-04-29 10:02:33,629 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:35,616 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 1 hr time horizon... +2026-04-29 10:02:35,632 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:37,970 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 16 hr time horizon... +2026-04-29 10:02:37,991 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:39,951 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 18 hr time horizon... +2026-04-29 10:02:39,972 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:40,946 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 12 hr time horizon... +2026-04-29 10:02:40,971 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:41,508 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 17 hr time horizon... +2026-04-29 10:02:41,530 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:42,379 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 13 hr time horizon... +2026-04-29 10:02:42,397 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 1 hr time horizon... +2026-04-29 10:02:42,515 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 6 hr time horizon... +2026-04-29 10:02:42,536 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:42,797 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 15 hr time horizon... +2026-04-29 10:02:42,819 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 1 hr time horizon... +2026-04-29 10:02:42,925 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 6 hr time horizon... +2026-04-29 10:02:42,945 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:46,380 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 9 hr time horizon... +2026-04-29 10:02:46,409 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:47,552 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:47,579 - __main__ - INFO - Processing values: 2018-01-16 03:00:00 7 hr time horizon... +2026-04-29 10:02:47,708 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 8 hr time horizon... +2026-04-29 10:02:47,735 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:47,878 - __main__ - INFO - Finished processing 2018-01-18 02:00:00 8 hr time horizon... +2026-04-29 10:02:47,900 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:48,088 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 15 hr time horizon... +2026-04-29 10:02:48,108 - __main__ - INFO - Processing values: 2018-01-03 19:00:00 5 hr time horizon... +2026-04-29 10:02:48,224 - __main__ - INFO - Finished processing 2018-01-04 05:00:00 16 hr time horizon... +2026-04-29 10:02:48,245 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:48,353 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 12 hr time horizon... +2026-04-29 10:02:48,373 - __main__ - INFO - Processing values: 2018-01-11 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:50,608 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 5 hr time horizon... +2026-04-29 10:02:50,630 - __main__ - INFO - Processing values: 2018-01-02 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:53,564 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 6 hr time horizon... +2026-04-29 10:02:53,587 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:54,991 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:55,051 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:55,678 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:55,709 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:56,756 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:56,778 - __main__ - INFO - Processing values: 2018-01-17 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:56,930 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 13 hr time horizon... +2026-04-29 10:02:56,952 - __main__ - INFO - Processing values: 2018-01-10 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:58,201 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 1 hr time horizon... +2026-04-29 10:02:58,220 - __main__ - INFO - Processing values: 2018-01-20 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:58,416 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 14 hr time horizon... +2026-04-29 10:02:58,439 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:02:58,927 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 7 hr time horizon... +2026-04-29 10:02:58,949 - __main__ - INFO - Processing values: 2018-01-09 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:01,467 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 8 hr time horizon... +2026-04-29 10:03:01,497 - __main__ - INFO - Processing values: 2018-01-04 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:01,554 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:01,579 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 2 hr time horizon... +2026-04-29 10:03:01,734 - __main__ - INFO - Finished processing 2018-01-16 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:01,757 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 4 hr time horizon... +2026-04-29 10:03:02,026 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 17 hr time horizon... +2026-04-29 10:03:02,047 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:03:02,097 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:02,123 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 9 hr time horizon... +2026-04-29 10:03:02,167 - __main__ - INFO - Finished processing 2018-01-11 02:00:00 1 hr time horizon... +2026-04-29 10:03:02,188 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 2 hr time horizon... +2026-04-29 10:03:02,656 - __main__ - INFO - Finished processing 2018-01-03 19:00:00 5 hr time horizon... +2026-04-29 10:03:02,677 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:05,775 - __main__ - INFO - Finished processing 2018-01-02 20:00:00 18 hr time horizon... +2026-04-29 10:03:05,798 - __main__ - INFO - Processing values: 2018-01-03 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:07,379 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 3 hr time horizon... +2026-04-29 10:03:07,397 - __main__ - INFO - Processing values: 2018-01-11 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:09,456 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 3 hr time horizon... +2026-04-29 10:03:09,475 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:11,766 - __main__ - INFO - Finished processing 2018-01-17 11:00:00 3 hr time horizon... +2026-04-29 10:03:11,785 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:11,870 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 18 hr time horizon... +2026-04-29 10:03:11,894 - __main__ - INFO - Processing values: 2018-01-13 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:12,529 - __main__ - INFO - Finished processing 2018-01-10 05:00:00 8 hr time horizon... +2026-04-29 10:03:12,556 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:03:13,824 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:13,849 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:14,422 - __main__ - INFO - Finished processing 2018-01-20 11:00:00 13 hr time horizon... +2026-04-29 10:03:14,443 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 5 hr time horizon... +2026-04-29 10:03:14,534 - __main__ - INFO - Finished processing 2018-01-09 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:14,556 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:14,834 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 6 hr time horizon... +2026-04-29 10:03:14,855 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:16,151 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 2 hr time horizon... +2026-04-29 10:03:16,172 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:16,915 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 2 hr time horizon... +2026-04-29 10:03:16,935 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:17,151 - __main__ - INFO - Finished processing 2018-01-04 22:00:00 18 hr time horizon... +2026-04-29 10:03:17,177 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:17,685 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 2 hr time horizon... +2026-04-29 10:03:17,702 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:17,851 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 5 hr time horizon... +2026-04-29 10:03:17,871 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:18,261 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 9 hr time horizon... +2026-04-29 10:03:18,288 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:18,873 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 4 hr time horizon... +2026-04-29 10:03:18,893 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:20,146 - __main__ - INFO - Finished processing 2018-01-03 16:00:00 1 hr time horizon... +2026-04-29 10:03:20,164 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:22,483 - __main__ - INFO - Finished processing 2018-01-11 12:00:00 6 hr time horizon... +2026-04-29 10:03:22,505 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:24,199 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 8 hr time horizon... +2026-04-29 10:03:24,219 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:26,114 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 10 hr time horizon... +2026-04-29 10:03:26,138 - __main__ - INFO - Processing values: 2018-01-22 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:26,214 - __main__ - INFO - Finished processing 2018-01-13 06:00:00 3 hr time horizon... +2026-04-29 10:03:26,237 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:27,643 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 7 hr time horizon... +2026-04-29 10:03:27,669 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:27,888 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 4 hr time horizon... +2026-04-29 10:03:27,911 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:28,227 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 9 hr time horizon... +2026-04-29 10:03:28,247 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:28,574 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 5 hr time horizon... +2026-04-29 10:03:28,602 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:29,133 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:29,155 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:30,150 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 15 hr time horizon... +2026-04-29 10:03:30,181 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:31,480 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:31,516 - __main__ - INFO - Processing values: 2018-01-19 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:31,712 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 12 hr time horizon... +2026-04-29 10:03:31,735 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:31,916 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:31,943 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 16 hr time horizon... +2026-04-29 10:03:31,976 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 14 hr time horizon... +2026-04-29 10:03:32,002 - __main__ - INFO - Processing values: 2018-01-30 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:32,539 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 14 hr time horizon... +2026-04-29 10:03:32,563 - __main__ - INFO - Processing values: 2018-01-26 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:33,301 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 6 hr time horizon... +2026-04-29 10:03:33,321 - __main__ - INFO - Processing values: 2018-01-29 19:00:00 13 hr time horizon... +2026-04-29 10:03:33,514 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 4 hr time horizon... +2026-04-29 10:03:33,533 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:34,520 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 11 hr time horizon... +2026-04-29 10:03:34,542 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:37,323 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 12 hr time horizon... +2026-04-29 10:03:37,361 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 9 hr time horizon... +2026-04-29 10:03:37,471 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 8 hr time horizon... +2026-04-29 10:03:37,497 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:39,276 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 5 hr time horizon... +2026-04-29 10:03:39,306 - __main__ - INFO - Processing values: 2018-01-10 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:41,266 - __main__ - INFO - Finished processing 2018-01-22 12:00:00 6 hr time horizon... +2026-04-29 10:03:41,300 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:41,379 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 5 hr time horizon... +2026-04-29 10:03:41,401 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:42,383 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 13 hr time horizon... +2026-04-29 10:03:42,406 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:42,987 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 16 hr time horizon... +2026-04-29 10:03:43,007 - __main__ - INFO - Processing values: 2018-01-28 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:43,140 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 16 hr time horizon... +2026-04-29 10:03:43,163 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:43,690 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 8 hr time horizon... +2026-04-29 10:03:43,722 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:44,706 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 15 hr time horizon... +2026-04-29 10:03:44,737 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:45,268 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 6 hr time horizon... +2026-04-29 10:03:45,293 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:46,917 - __main__ - INFO - Finished processing 2018-01-19 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:46,943 - __main__ - INFO - Processing values: 2018-01-04 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:47,191 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 16 hr time horizon... +2026-04-29 10:03:47,215 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:47,498 - __main__ - INFO - Finished processing 2018-01-30 14:00:00 15 hr time horizon... +2026-04-29 10:03:47,522 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:47,955 - __main__ - INFO - Finished processing 2018-01-26 21:00:00 4 hr time horizon... +2026-04-29 10:03:47,976 - __main__ - INFO - Processing values: 2018-01-08 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:49,267 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 9 hr time horizon... +2026-04-29 10:03:49,289 - __main__ - INFO - Processing values: 2018-01-18 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:49,551 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 12 hr time horizon... +2026-04-29 10:03:49,573 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:49,763 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 15 hr time horizon... +2026-04-29 10:03:49,785 - __main__ - INFO - Processing values: 2018-01-15 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:52,496 - __main__ - INFO - Finished processing 2018-01-29 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:52,518 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:53,134 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 12 hr time horizon... +2026-04-29 10:03:53,156 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:53,738 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 9 hr time horizon... +2026-04-29 10:03:53,761 - __main__ - INFO - Processing values: 2018-01-23 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:54,280 - __main__ - INFO - Finished processing 2018-01-10 01:00:00 4 hr time horizon... +2026-04-29 10:03:54,304 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:56,912 - __main__ - INFO - Finished processing 2018-01-29 01:00:00 1 hr time horizon... +2026-04-29 10:03:56,931 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:57,127 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 11 hr time horizon... +2026-04-29 10:03:57,152 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:58,318 - __main__ - INFO - Finished processing 2018-01-28 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:58,342 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 16 hr time horizon... +2026-04-29 10:03:58,359 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 6 hr time horizon... +2026-04-29 10:03:58,381 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:03:59,231 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 9 hr time horizon... +2026-04-29 10:03:59,251 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:00,108 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 4 hr time horizon... +2026-04-29 10:04:00,126 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:01,551 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 6 hr time horizon... +2026-04-29 10:04:01,578 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:01,843 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 1 hr time horizon... +2026-04-29 10:04:01,874 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:03,313 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 15 hr time horizon... +2026-04-29 10:04:03,336 - __main__ - INFO - Processing values: 2018-01-05 02:00:00 1 hr time horizon... +2026-04-29 10:04:03,343 - __main__ - INFO - Finished processing 2018-01-04 12:00:00 10 hr time horizon... +2026-04-29 10:04:03,364 - __main__ - INFO - Processing values: 2018-01-03 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:03,467 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 6 hr time horizon... +2026-04-29 10:04:03,490 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:06,095 - __main__ - INFO - Finished processing 2018-01-18 16:00:00 1 hr time horizon... +2026-04-29 10:04:06,118 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:04:06,630 - __main__ - INFO - Finished processing 2018-01-08 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:06,658 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:07,222 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 6 hr time horizon... +2026-04-29 10:04:07,247 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:09,216 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 11 hr time horizon... +2026-04-29 10:04:09,238 - __main__ - INFO - Processing values: 2018-01-19 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:09,321 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 12 hr time horizon... +2026-04-29 10:04:09,348 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:10,167 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 1 hr time horizon... +2026-04-29 10:04:10,187 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:11,909 - __main__ - INFO - Finished processing 2018-01-15 08:00:00 5 hr time horizon... +2026-04-29 10:04:11,934 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:12,504 - __main__ - INFO - Finished processing 2018-01-23 11:00:00 15 hr time horizon... +2026-04-29 10:04:12,526 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:13,491 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 7 hr time horizon... +2026-04-29 10:04:13,521 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:13,668 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 15 hr time horizon... +2026-04-29 10:04:13,697 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:14,603 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 16 hr time horizon... +2026-04-29 10:04:14,632 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:14,676 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 8 hr time horizon... +2026-04-29 10:04:14,699 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:16,262 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:16,287 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:16,592 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 8 hr time horizon... +2026-04-29 10:04:16,616 - __main__ - INFO - Processing values: 2018-01-16 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:17,813 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 16 hr time horizon... +2026-04-29 10:04:17,815 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 17 hr time horizon... +2026-04-29 10:04:17,840 - __main__ - INFO - Processing values: 2018-01-05 09:00:00 1 hr time horizon... +2026-04-29 10:04:17,842 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:19,299 - __main__ - INFO - Finished processing 2018-01-03 10:00:00 1 hr time horizon... +2026-04-29 10:04:19,320 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:19,491 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 10 hr time horizon... +2026-04-29 10:04:19,513 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:19,908 - __main__ - INFO - Finished processing 2018-01-05 02:00:00 1 hr time horizon... +2026-04-29 10:04:19,926 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:22,224 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 5 hr time horizon... +2026-04-29 10:04:22,250 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:22,658 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 7 hr time horizon... +2026-04-29 10:04:22,679 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:22,972 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 4 hr time horizon... +2026-04-29 10:04:23,002 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:24,117 - __main__ - INFO - Finished processing 2018-01-19 05:00:00 1 hr time horizon... +2026-04-29 10:04:24,138 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:24,891 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 6 hr time horizon... +2026-04-29 10:04:24,911 - __main__ - INFO - Processing values: 2018-01-16 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:26,935 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:04:26,954 - __main__ - INFO - Processing values: 2018-01-30 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:27,080 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 2 hr time horizon... +2026-04-29 10:04:27,100 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:27,826 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 6 hr time horizon... +2026-04-29 10:04:27,853 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:30,240 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 4 hr time horizon... +2026-04-29 10:04:30,261 - __main__ - INFO - Processing values: 2018-01-26 04:00:00 17 hr time horizon... +2026-04-29 10:04:30,378 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 6 hr time horizon... +2026-04-29 10:04:30,400 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:30,497 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 6 hr time horizon... +2026-04-29 10:04:30,522 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:31,361 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 7 hr time horizon... +2026-04-29 10:04:31,409 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:33,449 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 8 hr time horizon... +2026-04-29 10:04:33,476 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:34,380 - __main__ - INFO - Finished processing 2018-01-16 15:00:00 10 hr time horizon... +2026-04-29 10:04:34,402 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:35,096 - __main__ - INFO - Finished processing 2018-01-05 09:00:00 1 hr time horizon... +2026-04-29 10:04:35,118 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:35,309 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 1 hr time horizon... +2026-04-29 10:04:35,331 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:35,795 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 15 hr time horizon... +2026-04-29 10:04:35,820 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:37,274 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 10 hr time horizon... +2026-04-29 10:04:37,295 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 15 hr time horizon... +2026-04-29 10:04:37,590 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 12 hr time horizon... +2026-04-29 10:04:37,615 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:41,411 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 12 hr time horizon... +2026-04-29 10:04:41,435 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:42,011 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 18 hr time horizon... +2026-04-29 10:04:42,039 - __main__ - INFO - Processing values: 2018-01-02 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:42,335 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:42,358 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:42,744 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 1 hr time horizon... +2026-04-29 10:04:42,766 - __main__ - INFO - Processing values: 2018-01-10 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:42,939 - __main__ - INFO - Finished processing 2018-01-16 14:00:00 4 hr time horizon... +2026-04-29 10:04:42,961 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:45,029 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 10 hr time horizon... +2026-04-29 10:04:45,046 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:45,372 - __main__ - INFO - Finished processing 2018-01-30 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:45,399 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:45,998 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 3 hr time horizon... +2026-04-29 10:04:46,019 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:47,549 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 4 hr time horizon... +2026-04-29 10:04:47,574 - __main__ - INFO - Processing values: 2018-01-27 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:47,719 - __main__ - INFO - Finished processing 2018-01-26 04:00:00 17 hr time horizon... +2026-04-29 10:04:47,751 - __main__ - INFO - Processing values: 2018-01-14 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:48,292 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 15 hr time horizon... +2026-04-29 10:04:48,318 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:48,534 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:48,557 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:50,924 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 11 hr time horizon... +2026-04-29 10:04:50,947 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:51,162 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 14 hr time horizon... +2026-04-29 10:04:51,183 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:51,664 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:51,674 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 16 hr time horizon... +2026-04-29 10:04:51,702 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:51,708 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:52,249 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 18 hr time horizon... +2026-04-29 10:04:52,271 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:53,912 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 17 hr time horizon... +2026-04-29 10:04:53,935 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:54,641 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 15 hr time horizon... +2026-04-29 10:04:54,666 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:57,332 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 17 hr time horizon... +2026-04-29 10:04:57,357 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 16 hr time horizon... +2026-04-29 10:04:57,404 - __main__ - INFO - Finished processing 2018-01-02 20:00:00 5 hr time horizon... +2026-04-29 10:04:57,427 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:57,664 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:57,691 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:58,276 - __main__ - INFO - Finished processing 2018-01-10 11:00:00 14 hr time horizon... +2026-04-29 10:04:58,299 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:04:58,620 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 18 hr time horizon... +2026-04-29 10:04:58,644 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:01,136 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:01,167 - __main__ - INFO - Processing values: 2018-01-24 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:01,257 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 5 hr time horizon... +2026-04-29 10:05:01,278 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 6 hr time horizon... +2026-04-29 10:05:01,496 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 3 hr time horizon... +2026-04-29 10:05:01,526 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:02,645 - __main__ - INFO - Finished processing 2018-01-27 02:00:00 4 hr time horizon... +2026-04-29 10:05:02,670 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:03,363 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 2 hr time horizon... +2026-04-29 10:05:03,386 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:03,872 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 14 hr time horizon... +2026-04-29 10:05:03,901 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:04,608 - __main__ - INFO - Finished processing 2018-01-14 16:00:00 11 hr time horizon... +2026-04-29 10:05:04,630 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:05,536 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 13 hr time horizon... +2026-04-29 10:05:05,561 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:06,180 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 8 hr time horizon... +2026-04-29 10:05:06,206 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:07,193 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 10 hr time horizon... +2026-04-29 10:05:07,215 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:07,354 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 15 hr time horizon... +2026-04-29 10:05:07,379 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:08,435 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:08,454 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:10,244 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 16 hr time horizon... +2026-04-29 10:05:10,267 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:10,446 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 6 hr time horizon... +2026-04-29 10:05:10,474 - __main__ - INFO - Processing values: 2018-01-21 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:12,715 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 16 hr time horizon... +2026-04-29 10:05:12,739 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:12,846 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 10 hr time horizon... +2026-04-29 10:05:12,861 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 7 hr time horizon... +2026-04-29 10:05:12,870 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 5 hr time horizon... +2026-04-29 10:05:12,887 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 1 hr time horizon... +2026-04-29 10:05:12,957 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 12 hr time horizon... +2026-04-29 10:05:12,983 - __main__ - INFO - Processing values: 2018-01-06 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:13,439 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 15 hr time horizon... +2026-04-29 10:05:13,457 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:16,192 - __main__ - INFO - Finished processing 2018-01-24 05:00:00 10 hr time horizon... +2026-04-29 10:05:16,215 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 8 hr time horizon... +2026-04-29 10:05:16,221 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 6 hr time horizon... +2026-04-29 10:05:16,245 - __main__ - INFO - Processing values: 2018-01-23 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:16,363 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 12 hr time horizon... +2026-04-29 10:05:16,384 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:17,944 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 6 hr time horizon... +2026-04-29 10:05:17,965 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:19,462 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 17 hr time horizon... +2026-04-29 10:05:19,483 - __main__ - INFO - Processing values: 2018-01-18 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:19,805 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 14 hr time horizon... +2026-04-29 10:05:19,826 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:20,363 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 13 hr time horizon... +2026-04-29 10:05:20,384 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:21,672 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:21,703 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 7 hr time horizon... +2026-04-29 10:05:21,745 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 10 hr time horizon... +2026-04-29 10:05:21,768 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:22,474 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 6 hr time horizon... +2026-04-29 10:05:22,496 - __main__ - INFO - Processing values: 2018-01-23 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:22,740 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 4 hr time horizon... +2026-04-29 10:05:22,764 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:23,455 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 3 hr time horizon... +2026-04-29 10:05:23,473 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:24,053 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 17 hr time horizon... +2026-04-29 10:05:24,074 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:25,888 - __main__ - INFO - Finished processing 2018-01-21 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:25,915 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:26,854 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 1 hr time horizon... +2026-04-29 10:05:26,873 - __main__ - INFO - Processing values: 2018-01-24 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:27,267 - __main__ - INFO - Finished processing 2018-01-06 10:00:00 4 hr time horizon... +2026-04-29 10:05:27,289 - __main__ - INFO - Processing values: 2018-01-09 11:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:27,454 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 3 hr time horizon... +2026-04-29 10:05:27,475 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 11 hr time horizon... +2026-04-29 10:05:27,652 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 5 hr time horizon... +2026-04-29 10:05:27,672 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:27,762 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:27,784 - __main__ - INFO - Processing values: 2018-01-15 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:30,425 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 8 hr time horizon... +2026-04-29 10:05:30,444 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 4 hr time horizon... +2026-04-29 10:05:30,554 - __main__ - INFO - Finished processing 2018-01-23 12:00:00 7 hr time horizon... +2026-04-29 10:05:30,575 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:30,719 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 13 hr time horizon... +2026-04-29 10:05:30,739 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:32,730 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 12 hr time horizon... +2026-04-29 10:05:32,751 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:33,290 - __main__ - INFO - Finished processing 2018-01-18 13:00:00 11 hr time horizon... +2026-04-29 10:05:33,320 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:34,913 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:34,938 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:35,555 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 14 hr time horizon... +2026-04-29 10:05:35,579 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:36,504 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 16 hr time horizon... +2026-04-29 10:05:36,526 - __main__ - INFO - Finished processing 2018-01-23 23:00:00 13 hr time horizon... +2026-04-29 10:05:36,527 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 8 hr time horizon... +2026-04-29 10:05:36,546 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:37,351 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 9 hr time horizon... +2026-04-29 10:05:37,371 - __main__ - INFO - Processing values: 2018-01-28 02:00:00 9 hr time horizon... +2026-04-29 10:05:37,548 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 14 hr time horizon... +2026-04-29 10:05:37,566 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:39,104 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 12 hr time horizon... +2026-04-29 10:05:39,129 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:40,744 - __main__ - INFO - Finished processing 2018-01-24 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:40,774 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 17 hr time horizon... +2026-04-29 10:05:40,836 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 7 hr time horizon... +2026-04-29 10:05:40,863 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:41,406 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 17 hr time horizon... +2026-04-29 10:05:41,427 - __main__ - INFO - Processing values: 2018-01-27 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:41,733 - __main__ - INFO - Finished processing 2018-01-15 11:00:00 11 hr time horizon... +2026-04-29 10:05:41,754 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:41,896 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 11 hr time horizon... +2026-04-29 10:05:41,916 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:42,235 - __main__ - INFO - Finished processing 2018-01-09 11:00:00 12 hr time horizon... +2026-04-29 10:05:42,262 - __main__ - INFO - Processing values: 2018-01-24 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:43,231 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 12 hr time horizon... +2026-04-29 10:05:43,254 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:45,145 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 13 hr time horizon... +2026-04-29 10:05:45,167 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 9 hr time horizon... +2026-04-29 10:05:45,207 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 13 hr time horizon... +2026-04-29 10:05:45,226 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:45,933 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 2 hr time horizon... +2026-04-29 10:05:45,952 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:46,438 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 4 hr time horizon... +2026-04-29 10:05:46,466 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:49,022 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 4 hr time horizon... +2026-04-29 10:05:49,043 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:49,637 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 11 hr time horizon... +2026-04-29 10:05:49,659 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:50,177 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 8 hr time horizon... +2026-04-29 10:05:50,197 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:50,370 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 8 hr time horizon... +2026-04-29 10:05:50,388 - __main__ - INFO - Processing values: 2018-01-20 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:51,448 - __main__ - INFO - Finished processing 2018-01-28 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:51,470 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 12 hr time horizon... +2026-04-29 10:05:51,803 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:51,826 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:52,016 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 7 hr time horizon... +2026-04-29 10:05:52,036 - __main__ - INFO - Processing values: 2018-01-22 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:53,376 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 7 hr time horizon... +2026-04-29 10:05:53,400 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:54,520 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 17 hr time horizon... +2026-04-29 10:05:54,543 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:54,969 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 14 hr time horizon... +2026-04-29 10:05:54,993 - __main__ - INFO - Processing values: 2018-01-21 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:55,719 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:55,740 - __main__ - INFO - Processing values: 2018-01-20 14:00:00 7 hr time horizon... +2026-04-29 10:05:55,810 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 16 hr time horizon... +2026-04-29 10:05:55,831 - __main__ - INFO - Processing values: 2018-01-22 15:00:00 11 hr time horizon... +2026-04-29 10:05:55,985 - __main__ - INFO - Finished processing 2018-01-24 02:00:00 16 hr time horizon... +2026-04-29 10:05:56,005 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:56,156 - __main__ - INFO - Finished processing 2018-01-27 19:00:00 18 hr time horizon... +2026-04-29 10:05:56,177 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:56,989 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 16 hr time horizon... +2026-04-29 10:05:57,010 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:05:59,608 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 9 hr time horizon... +2026-04-29 10:05:59,630 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 8 hr time horizon... +2026-04-29 10:05:59,838 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 17 hr time horizon... +2026-04-29 10:05:59,858 - __main__ - INFO - Processing values: 2018-01-06 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:00,151 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:01,587 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:05,122 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:05,148 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:06,134 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:06,158 - __main__ - INFO - Processing values: 2018-01-03 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:06,979 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 12 hr time horizon... +2026-04-29 10:06:07,004 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 5 hr time horizon... +2026-04-29 10:06:07,036 - __main__ - INFO - Finished processing 2018-01-22 16:00:00 12 hr time horizon... +2026-04-29 10:06:07,057 - __main__ - INFO - Processing values: 2018-01-02 17:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:07,253 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 10 hr time horizon... +2026-04-29 10:06:07,273 - __main__ - INFO - Processing values: 2018-01-07 12:00:00 6 hr time horizon... +2026-04-29 10:06:07,291 - __main__ - INFO - Finished processing 2018-01-20 12:00:00 17 hr time horizon... +2026-04-29 10:06:07,313 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:07,944 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 1 hr time horizon... +2026-04-29 10:06:07,963 - __main__ - INFO - Processing values: 2018-01-25 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:08,307 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 2 hr time horizon... +2026-04-29 10:06:08,324 - __main__ - INFO - Processing values: 2018-01-29 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:08,722 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 9 hr time horizon... +2026-04-29 10:06:08,743 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:08,886 - __main__ - INFO - Finished processing 2018-01-21 21:00:00 12 hr time horizon... +2026-04-29 10:06:08,908 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:11,036 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 1 hr time horizon... +2026-04-29 10:06:11,054 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:11,831 - __main__ - INFO - Finished processing 2018-01-20 14:00:00 7 hr time horizon... +2026-04-29 10:06:11,856 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 16 hr time horizon... +2026-04-29 10:06:12,015 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 10 hr time horizon... +2026-04-29 10:06:12,039 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:06:12,238 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:12,262 - __main__ - INFO - Processing values: 2018-01-05 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:12,985 - __main__ - INFO - Finished processing 2018-01-22 15:00:00 11 hr time horizon... +2026-04-29 10:06:13,006 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:13,212 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 11 hr time horizon... +2026-04-29 10:06:13,235 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:14,673 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 8 hr time horizon... +2026-04-29 10:06:14,691 - __main__ - INFO - Processing values: 2018-01-06 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:14,868 - __main__ - INFO - Finished processing 2018-01-06 23:00:00 3 hr time horizon... +2026-04-29 10:06:14,887 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 9 hr time horizon... +2026-04-29 10:06:15,408 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 16 hr time horizon... +2026-04-29 10:06:15,428 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:18,628 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 11 hr time horizon... +2026-04-29 10:06:18,652 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:19,634 - __main__ - INFO - Finished processing 2018-01-03 10:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:19,655 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:20,260 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 5 hr time horizon... +2026-04-29 10:06:20,282 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:21,223 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 4 hr time horizon... +2026-04-29 10:06:21,245 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:21,552 - __main__ - INFO - Finished processing 2018-01-25 15:00:00 11 hr time horizon... +2026-04-29 10:06:21,572 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:21,795 - __main__ - INFO - Finished processing 2018-01-07 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:21,819 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:22,425 - __main__ - INFO - Finished processing 2018-01-29 20:00:00 7 hr time horizon... +2026-04-29 10:06:22,447 - __main__ - INFO - Processing values: 2018-01-16 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:22,585 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 18 hr time horizon... +2026-04-29 10:06:22,604 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:23,266 - __main__ - INFO - Finished processing 2018-01-02 17:00:00 6 hr time horizon... +2026-04-29 10:06:23,290 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:25,153 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 12 hr time horizon... +2026-04-29 10:06:25,182 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:25,903 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 4 hr time horizon... +2026-04-29 10:06:25,925 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:26,394 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:26,419 - __main__ - INFO - Processing values: 2018-01-10 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:26,933 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 14 hr time horizon... +2026-04-29 10:06:26,953 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:27,111 - __main__ - INFO - Finished processing 2018-01-05 15:00:00 1 hr time horizon... +2026-04-29 10:06:27,130 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 6 hr time horizon... +2026-04-29 10:06:27,143 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 9 hr time horizon... +2026-04-29 10:06:27,164 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:28,802 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 9 hr time horizon... +2026-04-29 10:06:28,824 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:28,952 - __main__ - INFO - Finished processing 2018-01-06 15:00:00 3 hr time horizon... +2026-04-29 10:06:28,973 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:30,589 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 8 hr time horizon... +2026-04-29 10:06:30,608 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:34,232 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 9 hr time horizon... +2026-04-29 10:06:34,257 - __main__ - INFO - Processing values: 2018-01-30 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:35,029 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:35,057 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:35,729 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 11 hr time horizon... +2026-04-29 10:06:35,752 - __main__ - INFO - Processing values: 2018-01-09 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:36,047 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:36,078 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:36,209 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 5 hr time horizon... +2026-04-29 10:06:36,230 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:37,044 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 6 hr time horizon... +2026-04-29 10:06:37,069 - __main__ - INFO - Processing values: 2018-01-25 05:00:00 9 hr time horizon... +2026-04-29 10:06:37,170 - __main__ - INFO - Finished processing 2018-01-16 04:00:00 6 hr time horizon... +2026-04-29 10:06:37,193 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:37,302 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 1 hr time horizon... +2026-04-29 10:06:37,320 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:37,660 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 16 hr time horizon... +2026-04-29 10:06:37,684 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:37,851 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:37,876 - __main__ - INFO - Processing values: 2018-01-30 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:39,553 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 17 hr time horizon... +2026-04-29 10:06:39,575 - __main__ - INFO - Processing values: 2018-01-25 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:40,831 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:40,852 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:41,993 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:42,017 - __main__ - INFO - Processing values: 2018-01-04 13:00:00 12 hr time horizon... +2026-04-29 10:06:42,025 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 6 hr time horizon... +2026-04-29 10:06:42,048 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:42,496 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 1 hr time horizon... +2026-04-29 10:06:42,514 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:43,664 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 5 hr time horizon... +2026-04-29 10:06:43,685 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:45,355 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 5 hr time horizon... +2026-04-29 10:06:45,380 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:46,137 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 14 hr time horizon... +2026-04-29 10:06:46,158 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:49,808 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 7 hr time horizon... +2026-04-29 10:06:49,830 - __main__ - INFO - Processing values: 2018-01-23 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:51,036 - __main__ - INFO - Finished processing 2018-01-30 01:00:00 12 hr time horizon... +2026-04-29 10:06:51,061 - __main__ - INFO - Processing values: 2018-01-22 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:51,279 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:51,302 - __main__ - INFO - Processing values: 2018-01-14 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:51,800 - __main__ - INFO - Finished processing 2018-01-09 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:51,824 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:52,458 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 15 hr time horizon... +2026-04-29 10:06:52,475 - __main__ - INFO - Finished processing 2018-01-25 05:00:00 9 hr time horizon... +2026-04-29 10:06:52,479 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 10 hr time horizon... +2026-04-29 10:06:52,495 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:52,804 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 14 hr time horizon... +2026-04-29 10:06:52,849 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:54,186 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 12 hr time horizon... +2026-04-29 10:06:54,216 - __main__ - INFO - Processing values: 2018-01-13 18:00:00 10 hr time horizon... +2026-04-29 10:06:54,330 - __main__ - INFO - Finished processing 2018-01-25 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:54,353 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 18 hr time horizon... +2026-04-29 10:06:54,408 - __main__ - INFO - Finished processing 2018-01-10 09:00:00 3 hr time horizon... +2026-04-29 10:06:54,430 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:55,201 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 4 hr time horizon... +2026-04-29 10:06:55,219 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:56,708 - __main__ - INFO - Finished processing 2018-01-30 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:56,734 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:57,488 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:57,512 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:57,930 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 15 hr time horizon... +2026-04-29 10:06:57,953 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:58,099 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 15 hr time horizon... +2026-04-29 10:06:58,122 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:06:58,620 - __main__ - INFO - Finished processing 2018-01-04 13:00:00 12 hr time horizon... +2026-04-29 10:06:58,644 - __main__ - INFO - Processing values: 2018-01-24 17:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:00,073 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 17 hr time horizon... +2026-04-29 10:07:00,095 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:01,797 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 1 hr time horizon... +2026-04-29 10:07:01,818 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:02,174 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 3 hr time horizon... +2026-04-29 10:07:02,199 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:05,017 - __main__ - INFO - Finished processing 2018-01-23 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:05,038 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:05,947 - __main__ - INFO - Finished processing 2018-01-14 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:05,973 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:06,600 - __main__ - INFO - Finished processing 2018-01-22 18:00:00 14 hr time horizon... +2026-04-29 10:07:06,629 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:06,955 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 2 hr time horizon... +2026-04-29 10:07:06,975 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:08,036 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:08,060 - __main__ - INFO - Processing values: 2018-01-03 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:08,820 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 10 hr time horizon... +2026-04-29 10:07:08,849 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 4 hr time horizon... +2026-04-29 10:07:08,870 - __main__ - INFO - Finished processing 2018-01-13 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:08,895 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:09,423 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 1 hr time horizon... +2026-04-29 10:07:09,443 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:10,029 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 18 hr time horizon... +2026-04-29 10:07:10,068 - __main__ - INFO - Processing values: 2018-01-24 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:10,704 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 7 hr time horizon... +2026-04-29 10:07:10,732 - __main__ - INFO - Processing values: 2018-01-21 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:12,226 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 3 hr time horizon... +2026-04-29 10:07:12,248 - __main__ - INFO - Processing values: 2018-01-26 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:12,576 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 3 hr time horizon... +2026-04-29 10:07:12,596 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 15 hr time horizon... +2026-04-29 10:07:12,732 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:12,751 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:13,396 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 18 hr time horizon... +2026-04-29 10:07:13,420 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 14 hr time horizon... +2026-04-29 10:07:13,592 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 7 hr time horizon... +2026-04-29 10:07:13,618 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:13,752 - __main__ - INFO - Finished processing 2018-01-24 17:00:00 16 hr time horizon... +2026-04-29 10:07:13,774 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:16,289 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 15 hr time horizon... +2026-04-29 10:07:16,314 - __main__ - INFO - Processing values: 2018-01-13 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:17,219 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:17,240 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:17,846 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 14 hr time horizon... +2026-04-29 10:07:17,870 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:19,902 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 13 hr time horizon... +2026-04-29 10:07:19,926 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:20,876 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 1 hr time horizon... +2026-04-29 10:07:20,900 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:22,066 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 1 hr time horizon... +2026-04-29 10:07:22,092 - __main__ - INFO - Processing values: 2018-01-16 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:23,608 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 4 hr time horizon... +2026-04-29 10:07:23,627 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:23,857 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 7 hr time horizon... +2026-04-29 10:07:23,891 - __main__ - INFO - Processing values: 2018-01-25 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:24,651 - __main__ - INFO - Finished processing 2018-01-24 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:24,673 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:24,791 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 7 hr time horizon... +2026-04-29 10:07:24,816 - __main__ - INFO - Processing values: 2018-01-26 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:24,918 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 3 hr time horizon... +2026-04-29 10:07:24,940 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:25,384 - __main__ - INFO - Finished processing 2018-01-03 10:00:00 10 hr time horizon... +2026-04-29 10:07:25,413 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:25,848 - __main__ - INFO - Finished processing 2018-01-21 01:00:00 16 hr time horizon... +2026-04-29 10:07:25,871 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:27,145 - __main__ - INFO - Finished processing 2018-01-26 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:27,168 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:28,290 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 15 hr time horizon... +2026-04-29 10:07:28,313 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:28,551 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 14 hr time horizon... +2026-04-29 10:07:28,575 - __main__ - INFO - Processing values: 2018-01-17 17:00:00 14 hr time horizon... +2026-04-29 10:07:28,580 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 5 hr time horizon... +2026-04-29 10:07:28,601 - __main__ - INFO - Processing values: 2018-01-19 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:31,165 - __main__ - INFO - Finished processing 2018-01-13 06:00:00 13 hr time horizon... +2026-04-29 10:07:31,186 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 16 hr time horizon... +2026-04-29 10:07:31,241 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:31,266 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:31,740 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 10 hr time horizon... +2026-04-29 10:07:31,766 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 8 hr time horizon... +2026-04-29 10:07:31,938 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:07:31,960 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:33,018 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 11 hr time horizon... +2026-04-29 10:07:33,040 - __main__ - INFO - Processing values: 2018-01-20 06:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:35,052 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 9 hr time horizon... +2026-04-29 10:07:35,077 - __main__ - INFO - Processing values: 2018-01-30 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:36,445 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 17 hr time horizon... +2026-04-29 10:07:36,469 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:37,421 - __main__ - INFO - Finished processing 2018-01-16 01:00:00 6 hr time horizon... +2026-04-29 10:07:37,443 - __main__ - INFO - Processing values: 2018-01-30 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:38,160 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 16 hr time horizon... +2026-04-29 10:07:38,184 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:39,255 - __main__ - INFO - Finished processing 2018-01-25 10:00:00 3 hr time horizon... +2026-04-29 10:07:39,277 - __main__ - INFO - Processing values: 2018-01-23 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:39,990 - __main__ - INFO - Finished processing 2018-01-26 16:00:00 14 hr time horizon... +2026-04-29 10:07:40,023 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:40,175 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 8 hr time horizon... +2026-04-29 10:07:40,197 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:40,620 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 17 hr time horizon... +2026-04-29 10:07:40,646 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:40,872 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 8 hr time horizon... +2026-04-29 10:07:40,890 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:41,457 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 13 hr time horizon... +2026-04-29 10:07:41,480 - __main__ - INFO - Processing values: 2018-01-11 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:42,211 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 16 hr time horizon... +2026-04-29 10:07:42,234 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:45,545 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 3 hr time horizon... +2026-04-29 10:07:45,567 - __main__ - INFO - Processing values: 2018-01-21 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:45,983 - __main__ - INFO - Finished processing 2018-01-19 09:00:00 2 hr time horizon... +2026-04-29 10:07:46,006 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:46,779 - __main__ - INFO - Finished processing 2018-01-17 17:00:00 14 hr time horizon... +2026-04-29 10:07:46,805 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:49,133 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 16 hr time horizon... +2026-04-29 10:07:49,154 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 14 hr time horizon... +2026-04-29 10:07:49,243 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 8 hr time horizon... +2026-04-29 10:07:49,262 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:49,686 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 14 hr time horizon... +2026-04-29 10:07:49,710 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:50,378 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 13 hr time horizon... +2026-04-29 10:07:50,403 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:52,995 - __main__ - INFO - Finished processing 2018-01-30 16:00:00 11 hr time horizon... +2026-04-29 10:07:53,017 - __main__ - INFO - Processing values: 2018-01-05 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:53,925 - __main__ - INFO - Finished processing 2018-01-20 06:00:00 13 hr time horizon... +2026-04-29 10:07:53,954 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:54,516 - __main__ - INFO - Finished processing 2018-01-30 08:00:00 1 hr time horizon... +2026-04-29 10:07:54,535 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:55,701 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 12 hr time horizon... +2026-04-29 10:07:55,724 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:55,835 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 11 hr time horizon... +2026-04-29 10:07:55,860 - __main__ - INFO - Processing values: 2018-01-24 22:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:56,393 - __main__ - INFO - Finished processing 2018-01-23 20:00:00 8 hr time horizon... +2026-04-29 10:07:56,414 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:56,878 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 4 hr time horizon... +2026-04-29 10:07:56,901 - __main__ - INFO - Processing values: 2018-01-23 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:57,117 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 1 hr time horizon... +2026-04-29 10:07:57,135 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:57,321 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 15 hr time horizon... +2026-04-29 10:07:57,347 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:58,188 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 14 hr time horizon... +2026-04-29 10:07:58,210 - __main__ - INFO - Processing values: 2018-01-26 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:59,894 - __main__ - INFO - Finished processing 2018-01-11 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:07:59,918 - __main__ - INFO - Processing values: 2018-01-27 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:00,509 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:00,537 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:01,143 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 3 hr time horizon... +2026-04-29 10:08:01,162 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:01,731 - __main__ - INFO - Finished processing 2018-01-21 16:00:00 15 hr time horizon... +2026-04-29 10:08:01,735 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 12 hr time horizon... +2026-04-29 10:08:01,759 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 9 hr time horizon... +2026-04-29 10:08:01,760 - __main__ - INFO - Processing values: 2018-01-15 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:04,134 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:04,156 - __main__ - INFO - Processing values: 2018-01-27 23:00:00 4 hr time horizon... +2026-04-29 10:08:04,318 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 13 hr time horizon... +2026-04-29 10:08:04,335 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:05,550 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 16 hr time horizon... +2026-04-29 10:08:05,572 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:07,865 - __main__ - INFO - Finished processing 2018-01-05 06:00:00 16 hr time horizon... +2026-04-29 10:08:07,885 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:08,056 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 14 hr time horizon... +2026-04-29 10:08:08,069 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 2 hr time horizon... +2026-04-29 10:08:08,082 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 8 hr time horizon... +2026-04-29 10:08:08,093 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:09,142 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 18 hr time horizon... +2026-04-29 10:08:09,170 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:09,347 - __main__ - INFO - Finished processing 2018-01-24 22:00:00 1 hr time horizon... +2026-04-29 10:08:09,364 - __main__ - INFO - Processing values: 2018-01-21 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:11,219 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 3 hr time horizon... +2026-04-29 10:08:11,238 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 6 hr time horizon... +2026-04-29 10:08:11,253 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:11,276 - __main__ - INFO - Processing values: 2018-01-18 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:11,327 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 3 hr time horizon... +2026-04-29 10:08:11,347 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 18 hr time horizon... +2026-04-29 10:08:11,391 - __main__ - INFO - Finished processing 2018-01-23 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:11,412 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:11,938 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 15 hr time horizon... +2026-04-29 10:08:11,960 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:12,619 - __main__ - INFO - Finished processing 2018-01-26 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:12,641 - __main__ - INFO - Processing values: 2018-01-08 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:14,399 - __main__ - INFO - Finished processing 2018-01-27 04:00:00 17 hr time horizon... +2026-04-29 10:08:14,423 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:15,828 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:15,854 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:16,121 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 14 hr time horizon... +2026-04-29 10:08:16,146 - __main__ - INFO - Processing values: 2018-01-01 16:00:00 8 hr time horizon... +2026-04-29 10:08:16,177 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 3 hr time horizon... +2026-04-29 10:08:16,202 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:16,292 - __main__ - INFO - Finished processing 2018-01-15 07:00:00 13 hr time horizon... +2026-04-29 10:08:16,312 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:18,323 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 2 hr time horizon... +2026-04-29 10:08:18,342 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:18,912 - __main__ - INFO - Finished processing 2018-01-27 23:00:00 4 hr time horizon... +2026-04-29 10:08:18,933 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:20,785 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 15 hr time horizon... +2026-04-29 10:08:20,810 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:22,129 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:22,150 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:22,258 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:22,279 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:22,711 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 15 hr time horizon... +2026-04-29 10:08:22,743 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:23,090 - __main__ - INFO - Finished processing 2018-01-21 17:00:00 13 hr time horizon... +2026-04-29 10:08:23,113 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:23,280 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 10 hr time horizon... +2026-04-29 10:08:23,301 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:24,773 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 6 hr time horizon... +2026-04-29 10:08:24,792 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:25,416 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 18 hr time horizon... +2026-04-29 10:08:25,435 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:25,770 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 17 hr time horizon... +2026-04-29 10:08:25,793 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 13 hr time horizon... +2026-04-29 10:08:25,927 - __main__ - INFO - Finished processing 2018-01-18 07:00:00 18 hr time horizon... +2026-04-29 10:08:25,949 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:26,653 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 6 hr time horizon... +2026-04-29 10:08:26,674 - __main__ - INFO - Processing values: 2018-01-24 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:08:26,782 - __main__ - INFO - Finished processing 2018-01-08 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:26,821 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:28,521 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 10 hr time horizon... +2026-04-29 10:08:28,542 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:30,211 - __main__ - INFO - Finished processing 2018-01-01 16:00:00 8 hr time horizon... +2026-04-29 10:08:30,230 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:30,506 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 4 hr time horizon... +2026-04-29 10:08:30,526 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:31,069 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 12 hr time horizon... +2026-04-29 10:08:31,092 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:32,819 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 2 hr time horizon... +2026-04-29 10:08:32,841 - __main__ - INFO - Processing values: 2018-01-07 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:33,922 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 7 hr time horizon... +2026-04-29 10:08:33,945 - __main__ - INFO - Processing values: 2018-01-03 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:35,375 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 16 hr time horizon... +2026-04-29 10:08:35,401 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:35,638 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 15 hr time horizon... +2026-04-29 10:08:35,666 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:37,489 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 11 hr time horizon... +2026-04-29 10:08:37,503 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 18 hr time horizon... +2026-04-29 10:08:37,509 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 6 hr time horizon... +2026-04-29 10:08:37,527 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:37,740 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 6 hr time horizon... +2026-04-29 10:08:37,765 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:38,847 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 13 hr time horizon... +2026-04-29 10:08:38,870 - __main__ - INFO - Processing values: 2018-01-20 18:00:00 2 hr time horizon... +2026-04-29 10:08:38,875 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:38,902 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:39,323 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 1 hr time horizon... +2026-04-29 10:08:39,341 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:40,831 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 15 hr time horizon... +2026-04-29 10:08:40,853 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:41,083 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 13 hr time horizon... +2026-04-29 10:08:41,105 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:41,987 - __main__ - INFO - Finished processing 2018-01-24 03:00:00 3 hr time horizon... +2026-04-29 10:08:42,008 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 6 hr time horizon... +2026-04-29 10:08:42,086 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 7 hr time horizon... +2026-04-29 10:08:42,107 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 13 hr time horizon... +2026-04-29 10:08:42,146 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 3 hr time horizon... +2026-04-29 10:08:42,168 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:44,144 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 18 hr time horizon... +2026-04-29 10:08:44,167 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:46,268 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 7 hr time horizon... +2026-04-29 10:08:46,291 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 11 hr time horizon... +2026-04-29 10:08:46,313 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 4 hr time horizon... +2026-04-29 10:08:46,342 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:46,884 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 15 hr time horizon... +2026-04-29 10:08:46,911 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:48,129 - __main__ - INFO - Finished processing 2018-01-07 17:00:00 7 hr time horizon... +2026-04-29 10:08:48,157 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:49,712 - __main__ - INFO - Finished processing 2018-01-03 02:00:00 10 hr time horizon... +2026-04-29 10:08:49,740 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:50,494 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 5 hr time horizon... +2026-04-29 10:08:50,514 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:52,663 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:52,686 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:52,798 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 10 hr time horizon... +2026-04-29 10:08:52,819 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:53,346 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 1 hr time horizon... +2026-04-29 10:08:53,367 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:53,949 - __main__ - INFO - Finished processing 2018-01-20 18:00:00 2 hr time horizon... +2026-04-29 10:08:53,983 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:54,954 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 8 hr time horizon... +2026-04-29 10:08:54,980 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:56,024 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:56,057 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:56,183 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 6 hr time horizon... +2026-04-29 10:08:56,211 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:56,782 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 9 hr time horizon... +2026-04-29 10:08:56,807 - __main__ - INFO - Processing values: 2018-01-07 16:00:00 7 hr time horizon... +2026-04-29 10:08:56,809 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 12 hr time horizon... +2026-04-29 10:08:56,839 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:57,367 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 6 hr time horizon... +2026-04-29 10:08:57,388 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:57,635 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 16 hr time horizon... +2026-04-29 10:08:57,655 - __main__ - INFO - Processing values: 2018-01-11 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:08:58,186 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 13 hr time horizon... +2026-04-29 10:08:58,209 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:00,575 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 17 hr time horizon... +2026-04-29 10:09:00,596 - __main__ - INFO - Processing values: 2018-01-06 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:01,054 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 11 hr time horizon... +2026-04-29 10:09:01,077 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:02,031 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 18 hr time horizon... +2026-04-29 10:09:02,053 - __main__ - INFO - Processing values: 2018-01-13 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:02,160 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 10 hr time horizon... +2026-04-29 10:09:02,182 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:04,243 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:04,265 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:04,884 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:04,912 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:05,219 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 13 hr time horizon... +2026-04-29 10:09:05,244 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:06,677 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:06,707 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:07,848 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 3 hr time horizon... +2026-04-29 10:09:07,871 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 1 hr time horizon... +2026-04-29 10:09:07,877 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 14 hr time horizon... +2026-04-29 10:09:07,898 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:08,025 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 11 hr time horizon... +2026-04-29 10:09:08,048 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:09,395 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 11 hr time horizon... +2026-04-29 10:09:09,417 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:09,651 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:09,671 - __main__ - INFO - Processing values: 2018-01-01 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:10,254 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 2 hr time horizon... +2026-04-29 10:09:10,279 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:11,136 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:11,168 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:11,664 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 8 hr time horizon... +2026-04-29 10:09:11,683 - __main__ - INFO - Processing values: 2018-01-09 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:12,173 - __main__ - INFO - Finished processing 2018-01-07 16:00:00 7 hr time horizon... +2026-04-29 10:09:12,197 - __main__ - INFO - Processing values: 2018-01-02 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:12,755 - __main__ - INFO - Finished processing 2018-01-11 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:09:12,778 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:12,876 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 4 hr time horizon... +2026-04-29 10:09:12,900 - __main__ - INFO - Processing values: 2018-01-20 17:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:15,433 - __main__ - INFO - Finished processing 2018-01-06 07:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:15,459 - __main__ - INFO - Processing values: 2018-01-25 09:00:00 8 hr time horizon... +2026-04-29 10:09:15,628 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 13 hr time horizon... +2026-04-29 10:09:15,649 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:16,465 - __main__ - INFO - Finished processing 2018-01-13 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:16,485 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:17,421 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 8 hr time horizon... +2026-04-29 10:09:17,444 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:18,630 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 8 hr time horizon... +2026-04-29 10:09:18,652 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:20,333 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 5 hr time horizon... +2026-04-29 10:09:20,355 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:20,834 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:20,857 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:21,356 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 5 hr time horizon... +2026-04-29 10:09:21,374 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:22,494 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 1 hr time horizon... +2026-04-29 10:09:22,513 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:22,824 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 3 hr time horizon... +2026-04-29 10:09:22,847 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:23,436 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:23,466 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:23,885 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 11 hr time horizon... +2026-04-29 10:09:23,910 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:24,899 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:24,926 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:25,459 - __main__ - INFO - Finished processing 2018-01-01 03:00:00 5 hr time horizon... +2026-04-29 10:09:25,480 - __main__ - INFO - Processing values: 2018-01-28 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:25,641 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 17 hr time horizon... +2026-04-29 10:09:25,664 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:26,786 - __main__ - INFO - Finished processing 2018-01-09 22:00:00 2 hr time horizon... +2026-04-29 10:09:26,807 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 4 hr time horizon... +2026-04-29 10:09:26,811 - __main__ - INFO - Finished processing 2018-01-20 17:00:00 1 hr time horizon... +2026-04-29 10:09:26,829 - __main__ - INFO - Processing values: 2018-01-20 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:27,269 - __main__ - INFO - Finished processing 2018-01-02 17:00:00 12 hr time horizon... +2026-04-29 10:09:27,292 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 9 hr time horizon... +2026-04-29 10:09:27,458 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 4 hr time horizon... +2026-04-29 10:09:27,475 - __main__ - INFO - Processing values: 2018-01-14 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:30,231 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 2 hr time horizon... +2026-04-29 10:09:30,254 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:30,625 - __main__ - INFO - Finished processing 2018-01-25 09:00:00 8 hr time horizon... +2026-04-29 10:09:30,647 - __main__ - INFO - Processing values: 2018-01-20 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:32,330 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 7 hr time horizon... +2026-04-29 10:09:32,355 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:33,562 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 5 hr time horizon... +2026-04-29 10:09:33,581 - __main__ - INFO - Processing values: 2018-01-03 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:33,713 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 13 hr time horizon... +2026-04-29 10:09:33,740 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:34,153 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 16 hr time horizon... +2026-04-29 10:09:34,182 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:36,035 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:36,060 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:36,786 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 18 hr time horizon... +2026-04-29 10:09:36,806 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:37,118 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:37,147 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:37,895 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 5 hr time horizon... +2026-04-29 10:09:37,919 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:38,417 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 4 hr time horizon... +2026-04-29 10:09:38,445 - __main__ - INFO - Processing values: 2018-01-27 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:38,648 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 4 hr time horizon... +2026-04-29 10:09:38,679 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:40,457 - __main__ - INFO - Finished processing 2018-01-28 12:00:00 10 hr time horizon... +2026-04-29 10:09:40,482 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:09:40,730 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:40,764 - __main__ - INFO - Processing values: 2018-01-26 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:41,222 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 12 hr time horizon... +2026-04-29 10:09:41,243 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:41,994 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 4 hr time horizon... +2026-04-29 10:09:42,017 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:42,540 - __main__ - INFO - Finished processing 2018-01-20 08:00:00 17 hr time horizon... +2026-04-29 10:09:42,567 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:43,021 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 9 hr time horizon... +2026-04-29 10:09:43,047 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:43,754 - __main__ - INFO - Finished processing 2018-01-14 00:00:00 12 hr time horizon... +2026-04-29 10:09:43,777 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:45,983 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 2 hr time horizon... +2026-04-29 10:09:46,006 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:46,214 - __main__ - INFO - Finished processing 2018-01-20 00:00:00 13 hr time horizon... +2026-04-29 10:09:46,241 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:48,257 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 9 hr time horizon... +2026-04-29 10:09:48,281 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:49,019 - __main__ - INFO - Finished processing 2018-01-03 01:00:00 3 hr time horizon... +2026-04-29 10:09:49,041 - __main__ - INFO - Processing values: 2018-01-13 16:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:49,160 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 18 hr time horizon... +2026-04-29 10:09:49,183 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:49,690 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 17 hr time horizon... +2026-04-29 10:09:49,713 - __main__ - INFO - Processing values: 2018-01-01 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:52,017 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 2 hr time horizon... +2026-04-29 10:09:52,037 - __main__ - INFO - Processing values: 2018-01-05 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:52,375 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 15 hr time horizon... +2026-04-29 10:09:52,398 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:53,110 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 14 hr time horizon... +2026-04-29 10:09:53,141 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:53,717 - __main__ - INFO - Finished processing 2018-01-27 00:00:00 16 hr time horizon... +2026-04-29 10:09:53,743 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:53,878 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 3 hr time horizon... +2026-04-29 10:09:53,909 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:54,347 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 17 hr time horizon... +2026-04-29 10:09:54,372 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:55,821 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 12 hr time horizon... +2026-04-29 10:09:55,844 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 17 hr time horizon... +2026-04-29 10:09:56,046 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:56,070 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:56,286 - __main__ - INFO - Finished processing 2018-01-26 15:00:00 14 hr time horizon... +2026-04-29 10:09:56,308 - __main__ - INFO - Processing values: 2018-01-04 22:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:56,738 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 13 hr time horizon... +2026-04-29 10:09:56,761 - __main__ - INFO - Processing values: 2018-01-22 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:58,642 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 9 hr time horizon... +2026-04-29 10:09:58,663 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:09:59,526 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 14 hr time horizon... +2026-04-29 10:09:59,551 - __main__ - INFO - Processing values: 2018-01-26 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:00,074 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 4 hr time horizon... +2026-04-29 10:10:00,097 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:02,012 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 3 hr time horizon... +2026-04-29 10:10:02,035 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:02,524 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 4 hr time horizon... +2026-04-29 10:10:02,546 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:02,938 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 16 hr time horizon... +2026-04-29 10:10:02,963 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:04,235 - __main__ - INFO - Finished processing 2018-01-13 16:00:00 8 hr time horizon... +2026-04-29 10:10:04,258 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:04,918 - __main__ - INFO - Finished processing 2018-01-01 17:00:00 17 hr time horizon... +2026-04-29 10:10:04,937 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:05,262 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 10 hr time horizon... +2026-04-29 10:10:05,285 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:07,298 - __main__ - INFO - Finished processing 2018-01-05 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:07,320 - __main__ - INFO - Processing values: 2018-01-28 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:07,508 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 9 hr time horizon... +2026-04-29 10:10:07,529 - __main__ - INFO - Processing values: 2018-01-08 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:08,462 - __main__ - INFO - Finished processing 2018-01-29 01:00:00 4 hr time horizon... +2026-04-29 10:10:08,482 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:08,750 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 11 hr time horizon... +2026-04-29 10:10:08,771 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:10,298 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 12 hr time horizon... +2026-04-29 10:10:10,325 - __main__ - INFO - Processing values: 2018-01-14 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:10,694 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 18 hr time horizon... +2026-04-29 10:10:10,714 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:10,968 - __main__ - INFO - Finished processing 2018-01-22 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:10,990 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:11,152 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:11,179 - __main__ - INFO - Processing values: 2018-01-23 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:11,599 - __main__ - INFO - Finished processing 2018-01-04 22:00:00 13 hr time horizon... +2026-04-29 10:10:11,627 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:12,886 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 4 hr time horizon... +2026-04-29 10:10:12,905 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:13,080 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 2 hr time horizon... +2026-04-29 10:10:13,102 - __main__ - INFO - Processing values: 2018-01-30 11:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:13,894 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 5 hr time horizon... +2026-04-29 10:10:13,918 - __main__ - INFO - Processing values: 2018-01-30 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:15,948 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 15 hr time horizon... +2026-04-29 10:10:15,971 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:16,689 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 13 hr time horizon... +2026-04-29 10:10:16,720 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:17,303 - __main__ - INFO - Finished processing 2018-01-26 20:00:00 14 hr time horizon... +2026-04-29 10:10:17,324 - __main__ - INFO - Processing values: 2018-01-14 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:18,706 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 7 hr time horizon... +2026-04-29 10:10:18,729 - __main__ - INFO - Processing values: 2018-01-03 21:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:18,970 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 1 hr time horizon... +2026-04-29 10:10:18,993 - __main__ - INFO - Processing values: 2018-01-04 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:19,614 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 11 hr time horizon... +2026-04-29 10:10:19,636 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:20,250 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:20,271 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:21,923 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 12 hr time horizon... +2026-04-29 10:10:21,943 - __main__ - INFO - Processing values: 2018-01-15 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:22,110 - __main__ - INFO - Finished processing 2018-01-08 23:00:00 2 hr time horizon... +2026-04-29 10:10:22,130 - __main__ - INFO - Processing values: 2018-01-18 18:00:00 9 hr time horizon... +2026-04-29 10:10:22,179 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 7 hr time horizon... +2026-04-29 10:10:22,199 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:24,369 - __main__ - INFO - Finished processing 2018-01-28 20:00:00 14 hr time horizon... +2026-04-29 10:10:24,394 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 7 hr time horizon... +2026-04-29 10:10:24,430 - __main__ - INFO - Finished processing 2018-01-14 01:00:00 7 hr time horizon... +2026-04-29 10:10:24,448 - __main__ - INFO - Processing values: 2018-01-04 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:24,579 - __main__ - INFO - Finished processing 2018-01-23 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:24,601 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:25,000 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 5 hr time horizon... +2026-04-29 10:10:25,029 - __main__ - INFO - Processing values: 2018-01-01 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:25,631 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 9 hr time horizon... +2026-04-29 10:10:25,656 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:26,375 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 10 hr time horizon... +2026-04-29 10:10:26,399 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:26,981 - __main__ - INFO - Finished processing 2018-01-30 11:00:00 2 hr time horizon... +2026-04-29 10:10:27,007 - __main__ - INFO - Processing values: 2018-01-23 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:27,717 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:27,743 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:30,070 - __main__ - INFO - Finished processing 2018-01-30 06:00:00 18 hr time horizon... +2026-04-29 10:10:30,092 - __main__ - INFO - Processing values: 2018-01-15 01:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:30,791 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 15 hr time horizon... +2026-04-29 10:10:30,812 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:30,981 - __main__ - INFO - Finished processing 2018-01-14 10:00:00 18 hr time horizon... +2026-04-29 10:10:31,006 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:31,574 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 2 hr time horizon... +2026-04-29 10:10:31,596 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:34,053 - __main__ - INFO - Finished processing 2018-01-03 21:00:00 13 hr time horizon... +2026-04-29 10:10:34,080 - __main__ - INFO - Processing values: 2018-01-02 18:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:34,093 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 2 hr time horizon... +2026-04-29 10:10:34,115 - __main__ - INFO - Processing values: 2018-01-29 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:34,653 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 17 hr time horizon... +2026-04-29 10:10:34,675 - __main__ - INFO - Processing values: 2018-01-11 07:00:00 2 hr time horizon... +2026-04-29 10:10:34,697 - __main__ - INFO - Finished processing 2018-01-04 07:00:00 13 hr time horizon... +2026-04-29 10:10:34,718 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:36,876 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 3 hr time horizon... +2026-04-29 10:10:36,898 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:37,286 - __main__ - INFO - Finished processing 2018-01-18 18:00:00 9 hr time horizon... +2026-04-29 10:10:37,308 - __main__ - INFO - Processing values: 2018-01-18 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:37,545 - __main__ - INFO - Finished processing 2018-01-15 20:00:00 2 hr time horizon... +2026-04-29 10:10:37,568 - __main__ - INFO - Processing values: 2018-01-28 11:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:39,060 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 7 hr time horizon... +2026-04-29 10:10:39,080 - __main__ - INFO - Processing values: 2018-01-12 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:39,113 - __main__ - INFO - Finished processing 2018-01-04 23:00:00 16 hr time horizon... +2026-04-29 10:10:39,136 - __main__ - INFO - Processing values: 2018-01-12 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:40,543 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 8 hr time horizon... +2026-04-29 10:10:40,568 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:40,878 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 8 hr time horizon... +2026-04-29 10:10:40,902 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:41,064 - __main__ - INFO - Finished processing 2018-01-01 19:00:00 16 hr time horizon... +2026-04-29 10:10:41,086 - __main__ - INFO - Processing values: 2018-01-27 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:41,680 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 13 hr time horizon... +2026-04-29 10:10:41,702 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:42,634 - __main__ - INFO - Finished processing 2018-01-23 22:00:00 11 hr time horizon... +2026-04-29 10:10:42,655 - __main__ - INFO - Processing values: 2018-01-25 08:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:43,465 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:43,487 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:44,790 - __main__ - INFO - Finished processing 2018-01-15 01:00:00 8 hr time horizon... +2026-04-29 10:10:44,809 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:46,048 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 11 hr time horizon... +2026-04-29 10:10:46,067 - __main__ - INFO - Processing values: 2018-01-20 15:00:00 4 hr time horizon... +2026-04-29 10:10:46,089 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 18 hr time horizon... +2026-04-29 10:10:46,115 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:48,106 - __main__ - INFO - Finished processing 2018-01-02 18:00:00 8 hr time horizon... +2026-04-29 10:10:48,127 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:49,348 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:49,377 - __main__ - INFO - Processing values: 2018-01-10 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:49,686 - __main__ - INFO - Finished processing 2018-01-29 06:00:00 15 hr time horizon... +2026-04-29 10:10:49,725 - __main__ - INFO - Processing values: 2018-01-16 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:50,782 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:50,806 - __main__ - INFO - Processing values: 2018-01-11 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:51,246 - __main__ - INFO - Finished processing 2018-01-11 07:00:00 2 hr time horizon... +2026-04-29 10:10:51,269 - __main__ - INFO - Processing values: 2018-01-29 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:51,741 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 18 hr time horizon... +2026-04-29 10:10:51,766 - __main__ - INFO - Processing values: 2018-01-08 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:51,811 - __main__ - INFO - Finished processing 2018-01-18 09:00:00 3 hr time horizon... +2026-04-29 10:10:51,836 - __main__ - INFO - Processing values: 2018-01-22 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:53,638 - __main__ - INFO - Finished processing 2018-01-12 11:00:00 16 hr time horizon... +2026-04-29 10:10:53,659 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:54,104 - __main__ - INFO - Finished processing 2018-01-12 18:00:00 6 hr time horizon... +2026-04-29 10:10:54,139 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:54,909 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 4 hr time horizon... +2026-04-29 10:10:54,931 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:55,941 - __main__ - INFO - Finished processing 2018-01-27 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:55,964 - __main__ - INFO - Processing values: 2018-01-19 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:56,962 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 14 hr time horizon... +2026-04-29 10:10:56,987 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:57,389 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 11 hr time horizon... +2026-04-29 10:10:57,413 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 15 hr time horizon... +2026-04-29 10:10:57,497 - __main__ - INFO - Finished processing 2018-01-25 08:00:00 2 hr time horizon... +2026-04-29 10:10:57,518 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:58,222 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:10:58,244 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:00,557 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 10 hr time horizon... +2026-04-29 10:11:00,579 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:01,237 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 6 hr time horizon... +2026-04-29 10:11:01,260 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:01,394 - __main__ - INFO - Finished processing 2018-01-20 15:00:00 4 hr time horizon... +2026-04-29 10:11:01,415 - __main__ - INFO - Processing values: 2018-01-29 00:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:03,146 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 5 hr time horizon... +2026-04-29 10:11:03,168 - __main__ - INFO - Processing values: 2018-01-29 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:04,969 - __main__ - INFO - Finished processing 2018-01-16 07:00:00 10 hr time horizon... +2026-04-29 10:11:04,990 - __main__ - INFO - Processing values: 2018-01-09 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:05,231 - __main__ - INFO - Finished processing 2018-01-28 11:00:00 14 hr time horizon... +2026-04-29 10:11:05,260 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:06,197 - __main__ - INFO - Finished processing 2018-01-11 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:06,218 - __main__ - INFO - Processing values: 2018-01-03 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:06,311 - __main__ - INFO - Finished processing 2018-01-29 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:06,335 - __main__ - INFO - Processing values: 2018-01-22 08:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:07,307 - __main__ - INFO - Finished processing 2018-01-22 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:07,330 - __main__ - INFO - Processing values: 2018-01-05 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:08,620 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 9 hr time horizon... +2026-04-29 10:11:08,642 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:08,822 - __main__ - INFO - Finished processing 2018-01-08 16:00:00 6 hr time horizon... +2026-04-29 10:11:08,849 - __main__ - INFO - Processing values: 2018-01-17 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:09,063 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 2 hr time horizon... +2026-04-29 10:11:09,085 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:09,258 - __main__ - INFO - Finished processing 2018-01-10 13:00:00 8 hr time horizon... +2026-04-29 10:11:09,287 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:10,371 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:10,395 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:11,480 - __main__ - INFO - Finished processing 2018-01-19 20:00:00 10 hr time horizon... +2026-04-29 10:11:11,502 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:11,745 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 5 hr time horizon... +2026-04-29 10:11:11,765 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:12,641 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 15 hr time horizon... +2026-04-29 10:11:12,665 - __main__ - INFO - Processing values: 2018-01-07 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:12,913 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 4 hr time horizon... +2026-04-29 10:11:12,934 - __main__ - INFO - Processing values: 2018-01-16 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:15,812 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 6 hr time horizon... +2026-04-29 10:11:15,835 - __main__ - INFO - Processing values: 2018-01-14 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:15,978 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 17 hr time horizon... +2026-04-29 10:11:16,007 - __main__ - INFO - Processing values: 2018-01-04 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:16,373 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 5 hr time horizon... +2026-04-29 10:11:16,396 - __main__ - INFO - Processing values: 2018-01-29 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:17,327 - __main__ - INFO - Finished processing 2018-01-29 00:00:00 16 hr time horizon... +2026-04-29 10:11:17,363 - __main__ - INFO - Processing values: 2018-01-30 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:18,104 - __main__ - INFO - Finished processing 2018-01-29 21:00:00 2 hr time horizon... +2026-04-29 10:11:18,124 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:20,631 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 10 hr time horizon... +2026-04-29 10:11:20,654 - __main__ - INFO - Processing values: 2018-01-02 09:00:00 10 hr time horizon... +2026-04-29 10:11:20,756 - __main__ - INFO - Finished processing 2018-01-09 13:00:00 17 hr time horizon... +2026-04-29 10:11:20,782 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:21,679 - __main__ - INFO - Finished processing 2018-01-03 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:21,701 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:21,924 - __main__ - INFO - Finished processing 2018-01-22 08:00:00 6 hr time horizon... +2026-04-29 10:11:21,950 - __main__ - INFO - Processing values: 2018-01-24 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:22,851 - __main__ - INFO - Finished processing 2018-01-05 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:22,879 - __main__ - INFO - Processing values: 2018-01-16 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:23,932 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 8 hr time horizon... +2026-04-29 10:11:23,959 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:24,540 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 13 hr time horizon... +2026-04-29 10:11:24,572 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:24,841 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 9 hr time horizon... +2026-04-29 10:11:24,864 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:24,928 - __main__ - INFO - Finished processing 2018-01-17 19:00:00 17 hr time horizon... +2026-04-29 10:11:24,951 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:25,906 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 11 hr time horizon... +2026-04-29 10:11:25,929 - __main__ - INFO - Processing values: 2018-01-01 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:26,776 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 5 hr time horizon... +2026-04-29 10:11:26,800 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:27,195 - __main__ - INFO - Finished processing 2018-01-07 08:00:00 4 hr time horizon... +2026-04-29 10:11:27,221 - __main__ - INFO - Processing values: 2018-01-03 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:27,676 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:27,697 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:29,058 - __main__ - INFO - Finished processing 2018-01-16 16:00:00 12 hr time horizon... +2026-04-29 10:11:29,085 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:31,679 - __main__ - INFO - Finished processing 2018-01-14 15:00:00 8 hr time horizon... +2026-04-29 10:11:31,700 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 2 hr time horizon... +2026-04-29 10:11:31,756 - __main__ - INFO - Finished processing 2018-01-04 03:00:00 13 hr time horizon... +2026-04-29 10:11:31,780 - __main__ - INFO - Processing values: 2018-01-28 04:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:31,866 - __main__ - INFO - Finished processing 2018-01-29 09:00:00 10 hr time horizon... +2026-04-29 10:11:31,892 - __main__ - INFO - Processing values: 2018-01-24 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:32,558 - __main__ - INFO - Finished processing 2018-01-30 12:00:00 3 hr time horizon... +2026-04-29 10:11:32,579 - __main__ - INFO - Processing values: 2018-01-27 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:33,591 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 14 hr time horizon... +2026-04-29 10:11:33,613 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:36,150 - __main__ - INFO - Finished processing 2018-01-02 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:36,174 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:37,059 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:37,084 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:37,488 - __main__ - INFO - Finished processing 2018-01-24 02:00:00 14 hr time horizon... +2026-04-29 10:11:37,515 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:37,719 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 12 hr time horizon... +2026-04-29 10:11:37,741 - __main__ - INFO - Processing values: 2018-01-20 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:38,345 - __main__ - INFO - Finished processing 2018-01-16 08:00:00 18 hr time horizon... +2026-04-29 10:11:38,366 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:39,870 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 4 hr time horizon... +2026-04-29 10:11:39,891 - __main__ - INFO - Processing values: 2018-01-20 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:39,906 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 4 hr time horizon... +2026-04-29 10:11:39,928 - __main__ - INFO - Processing values: 2018-01-25 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:40,337 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 6 hr time horizon... +2026-04-29 10:11:40,359 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:40,819 - __main__ - INFO - Finished processing 2018-01-01 08:00:00 8 hr time horizon... +2026-04-29 10:11:40,843 - __main__ - INFO - Processing values: 2018-01-08 05:00:00 14 hr time horizon... +2026-04-29 10:11:40,877 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 11 hr time horizon... +2026-04-29 10:11:40,900 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:43,608 - __main__ - INFO - Finished processing 2018-01-03 12:00:00 7 hr time horizon... +2026-04-29 10:11:43,637 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:44,072 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 18 hr time horizon... +2026-04-29 10:11:44,099 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 14 hr time horizon... +2026-04-29 10:11:44,207 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 11 hr time horizon... +2026-04-29 10:11:44,233 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:44,359 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 17 hr time horizon... +2026-04-29 10:11:44,391 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:46,585 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 2 hr time horizon... +2026-04-29 10:11:46,610 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:47,283 - __main__ - INFO - Finished processing 2018-01-24 08:00:00 9 hr time horizon... +2026-04-29 10:11:47,307 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:48,014 - __main__ - INFO - Finished processing 2018-01-28 04:00:00 3 hr time horizon... +2026-04-29 10:11:48,035 - __main__ - INFO - Processing values: 2018-01-17 20:00:00 4 hr time horizon... +2026-04-29 10:11:48,267 - __main__ - INFO - Finished processing 2018-01-27 09:00:00 17 hr time horizon... +2026-04-29 10:11:48,289 - __main__ - INFO - Processing values: 2018-01-28 22:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:11:52,144 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:52,173 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:52,973 - __main__ - INFO - Finished processing 2018-01-20 13:00:00 17 hr time horizon... +2026-04-29 10:11:52,996 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:53,205 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:53,236 - __main__ - INFO - Processing values: 2018-01-13 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:53,906 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 14 hr time horizon... +2026-04-29 10:11:53,925 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 9 hr time horizon... +2026-04-29 10:11:53,935 - __main__ - INFO - Processing values: 2018-01-22 21:00:00 5 hr time horizon... +2026-04-29 10:11:53,947 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:54,120 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:54,148 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:55,421 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 8 hr time horizon... +2026-04-29 10:11:55,440 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:55,650 - __main__ - INFO - Finished processing 2018-01-20 01:00:00 12 hr time horizon... +2026-04-29 10:11:55,676 - __main__ - INFO - Processing values: 2018-01-15 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:56,391 - __main__ - INFO - Finished processing 2018-01-08 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:56,429 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:56,759 - __main__ - INFO - Finished processing 2018-01-25 02:00:00 11 hr time horizon... +2026-04-29 10:11:56,782 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:57,017 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 15 hr time horizon... +2026-04-29 10:11:57,041 - __main__ - INFO - Processing values: 2018-01-23 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:58,967 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 14 hr time horizon... +2026-04-29 10:11:58,989 - __main__ - INFO - Processing values: 2018-01-06 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:11:59,327 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 10 hr time horizon... +2026-04-29 10:11:59,352 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 4 hr time horizon... +2026-04-29 10:11:59,500 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 1 hr time horizon... +2026-04-29 10:11:59,522 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:01,112 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:01,138 - __main__ - INFO - Processing values: 2018-01-28 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:02,781 - __main__ - INFO - Finished processing 2018-01-28 22:00:00 18 hr time horizon... +2026-04-29 10:12:02,803 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:02,997 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 17 hr time horizon... +2026-04-29 10:12:03,021 - __main__ - INFO - Processing values: 2018-01-21 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:03,691 - __main__ - INFO - Finished processing 2018-01-17 20:00:00 4 hr time horizon... +2026-04-29 10:12:03,714 - __main__ - INFO - Processing values: 2018-01-29 08:00:00 13 hr time horizon... +2026-04-29 10:12:03,806 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 16 hr time horizon... +2026-04-29 10:12:03,829 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:07,053 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 15 hr time horizon... +2026-04-29 10:12:07,080 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:08,039 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 10 hr time horizon... +2026-04-29 10:12:08,063 - __main__ - INFO - Processing values: 2018-01-29 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:08,295 - __main__ - INFO - Finished processing 2018-01-22 21:00:00 5 hr time horizon... +2026-04-29 10:12:08,319 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:09,337 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:09,366 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:09,938 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 3 hr time horizon... +2026-04-29 10:12:09,961 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:10,491 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:10,514 - __main__ - INFO - Processing values: 2018-01-22 19:00:00 6 hr time horizon... +2026-04-29 10:12:10,544 - __main__ - INFO - Finished processing 2018-01-15 05:00:00 11 hr time horizon... +2026-04-29 10:12:10,566 - __main__ - INFO - Processing values: 2018-01-07 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:12,008 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 7 hr time horizon... +2026-04-29 10:12:12,036 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:12,479 - __main__ - INFO - Finished processing 2018-01-23 03:00:00 8 hr time horizon... +2026-04-29 10:12:12,516 - __main__ - INFO - Processing values: 2018-01-17 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:13,080 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 16 hr time horizon... +2026-04-29 10:12:13,102 - __main__ - INFO - Processing values: 2018-01-09 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:14,847 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 4 hr time horizon... +2026-04-29 10:12:14,871 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:15,173 - __main__ - INFO - Finished processing 2018-01-06 16:00:00 3 hr time horizon... +2026-04-29 10:12:15,198 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:15,764 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 18 hr time horizon... +2026-04-29 10:12:15,786 - __main__ - INFO - Processing values: 2018-01-22 11:00:00 1 hr time horizon... +2026-04-29 10:12:16,094 - __main__ - INFO - Finished processing 2018-01-28 19:00:00 9 hr time horizon... +2026-04-29 10:12:16,117 - __main__ - INFO - Processing values: 2018-01-23 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:19,261 - __main__ - INFO - Finished processing 2018-01-29 08:00:00 13 hr time horizon... +2026-04-29 10:12:19,294 - __main__ - INFO - Processing values: 2018-01-21 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:19,629 - __main__ - INFO - Finished processing 2018-01-21 15:00:00 14 hr time horizon... +2026-04-29 10:12:19,654 - __main__ - INFO - Processing values: 2018-01-14 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:19,885 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:19,908 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 9 hr time horizon... +2026-04-29 10:12:19,928 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 2 hr time horizon... +2026-04-29 10:12:19,951 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:21,530 - __main__ - INFO - Finished processing 2018-01-13 22:00:00 5 hr time horizon... +2026-04-29 10:12:21,546 - __main__ - INFO - Processing values: 2018-01-18 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:21,693 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 10 hr time horizon... +2026-04-29 10:12:21,717 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:24,338 - __main__ - INFO - Finished processing 2018-01-29 05:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:24,373 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:24,986 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:25,009 - __main__ - INFO - Processing values: 2018-01-09 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:25,087 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:25,105 - __main__ - INFO - Processing values: 2018-01-23 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:26,083 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 8 hr time horizon... +2026-04-29 10:12:26,109 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 10 hr time horizon... +2026-04-29 10:12:26,155 - __main__ - INFO - Finished processing 2018-01-22 19:00:00 6 hr time horizon... +2026-04-29 10:12:26,178 - __main__ - INFO - Processing values: 2018-01-29 23:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:26,477 - __main__ - INFO - Finished processing 2018-01-07 20:00:00 14 hr time horizon... +2026-04-29 10:12:26,504 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:27,448 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 11 hr time horizon... +2026-04-29 10:12:27,469 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 13 hr time horizon... +2026-04-29 10:12:27,560 - __main__ - INFO - Finished processing 2018-01-17 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:27,583 - __main__ - INFO - Processing values: 2018-01-11 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:27,855 - __main__ - INFO - Finished processing 2018-01-09 19:00:00 16 hr time horizon... +2026-04-29 10:12:27,891 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:29,810 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 16 hr time horizon... +2026-04-29 10:12:29,830 - __main__ - INFO - Processing values: 2018-01-13 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:30,308 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 11 hr time horizon... +2026-04-29 10:12:30,329 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:31,258 - __main__ - INFO - Finished processing 2018-01-23 19:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:31,278 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 17 hr time horizon... +2026-04-29 10:12:31,377 - __main__ - INFO - Finished processing 2018-01-22 11:00:00 1 hr time horizon... +2026-04-29 10:12:31,398 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:34,158 - __main__ - INFO - Finished processing 2018-01-21 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:34,182 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:34,319 - __main__ - INFO - Finished processing 2018-01-14 04:00:00 7 hr time horizon... +2026-04-29 10:12:34,342 - __main__ - INFO - Processing values: 2018-01-13 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:35,134 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 9 hr time horizon... +2026-04-29 10:12:35,158 - __main__ - INFO - Processing values: 2018-01-01 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:35,572 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 5 hr time horizon... +2026-04-29 10:12:35,592 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 17 hr time horizon... +2026-04-29 10:12:36,022 - __main__ - INFO - Finished processing 2018-01-18 10:00:00 9 hr time horizon... +2026-04-29 10:12:36,041 - __main__ - INFO - Processing values: 2018-01-18 08:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:39,233 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 7 hr time horizon... +2026-04-29 10:12:39,264 - __main__ - INFO - Processing values: 2018-01-29 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:40,415 - __main__ - INFO - Finished processing 2018-01-09 01:00:00 7 hr time horizon... +2026-04-29 10:12:40,440 - __main__ - INFO - Processing values: 2018-01-15 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:41,044 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 5 hr time horizon... +2026-04-29 10:12:41,064 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:41,314 - __main__ - INFO - Finished processing 2018-01-23 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:41,350 - __main__ - INFO - Processing values: 2018-01-12 00:00:00 11 hr time horizon... +2026-04-29 10:12:41,365 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 10 hr time horizon... +2026-04-29 10:12:41,391 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:41,962 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:41,986 - __main__ - INFO - Processing values: 2018-01-01 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:43,030 - __main__ - INFO - Finished processing 2018-01-11 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:43,056 - __main__ - INFO - Processing values: 2018-01-11 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:43,667 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:43,691 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:44,357 - __main__ - INFO - Finished processing 2018-01-13 11:00:00 3 hr time horizon... +2026-04-29 10:12:44,381 - __main__ - INFO - Processing values: 2018-01-01 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:45,519 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 12 hr time horizon... +2026-04-29 10:12:45,538 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:45,689 - __main__ - INFO - Finished processing 2018-01-29 23:00:00 4 hr time horizon... +2026-04-29 10:12:45,709 - __main__ - INFO - Processing values: 2018-01-20 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:46,714 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 17 hr time horizon... +2026-04-29 10:12:46,737 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:47,608 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 9 hr time horizon... +2026-04-29 10:12:47,632 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:47,808 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 11 hr time horizon... +2026-04-29 10:12:47,829 - __main__ - INFO - Processing values: 2018-01-08 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:49,087 - __main__ - INFO - Finished processing 2018-01-13 20:00:00 2 hr time horizon... +2026-04-29 10:12:49,106 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 7 hr time horizon... +2026-04-29 10:12:49,121 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 2 hr time horizon... +2026-04-29 10:12:49,145 - __main__ - INFO - Processing values: 2018-01-28 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:49,691 - __main__ - INFO - Finished processing 2018-01-01 15:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:49,715 - __main__ - INFO - Processing values: 2018-01-16 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:51,495 - __main__ - INFO - Finished processing 2018-01-18 08:00:00 18 hr time horizon... +2026-04-29 10:12:51,516 - __main__ - INFO - Processing values: 2018-01-15 15:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:52,828 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 17 hr time horizon... +2026-04-29 10:12:52,854 - __main__ - INFO - Processing values: 2018-01-23 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:54,178 - __main__ - INFO - Finished processing 2018-01-29 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:54,200 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:56,150 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 10 hr time horizon... +2026-04-29 10:12:56,180 - __main__ - INFO - Processing values: 2018-01-19 14:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:56,313 - __main__ - INFO - Finished processing 2018-01-01 00:00:00 1 hr time horizon... +2026-04-29 10:12:56,330 - __main__ - INFO - Processing values: 2018-01-21 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:56,618 - __main__ - INFO - Finished processing 2018-01-15 14:00:00 13 hr time horizon... +2026-04-29 10:12:56,641 - __main__ - INFO - Processing values: 2018-01-12 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:56,829 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 3 hr time horizon... +2026-04-29 10:12:56,869 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:57,249 - __main__ - INFO - Finished processing 2018-01-12 00:00:00 11 hr time horizon... +2026-04-29 10:12:57,271 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:58,106 - __main__ - INFO - Finished processing 2018-01-11 22:00:00 2 hr time horizon... +2026-04-29 10:12:58,137 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:12:58,353 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 1 hr time horizon... +2026-04-29 10:12:58,376 - __main__ - INFO - Processing values: 2018-01-04 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:00,049 - __main__ - INFO - Finished processing 2018-01-01 07:00:00 12 hr time horizon... +2026-04-29 10:13:00,069 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:00,730 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 10 hr time horizon... +2026-04-29 10:13:00,754 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:01,213 - __main__ - INFO - Finished processing 2018-01-20 20:00:00 6 hr time horizon... +2026-04-29 10:13:01,239 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:01,905 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 4 hr time horizon... +2026-04-29 10:13:01,928 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:03,580 - __main__ - INFO - Finished processing 2018-01-01 23:00:00 14 hr time horizon... +2026-04-29 10:13:03,603 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:04,505 - __main__ - INFO - Finished processing 2018-01-08 04:00:00 7 hr time horizon... +2026-04-29 10:13:04,529 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:04,688 - __main__ - INFO - Finished processing 2018-01-28 17:00:00 2 hr time horizon... +2026-04-29 10:13:04,710 - __main__ - INFO - Processing values: 2018-01-03 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:04,830 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 7 hr time horizon... +2026-04-29 10:13:04,854 - __main__ - INFO - Processing values: 2018-01-16 23:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:05,364 - __main__ - INFO - Finished processing 2018-01-16 12:00:00 4 hr time horizon... +2026-04-29 10:13:05,385 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:07,204 - __main__ - INFO - Finished processing 2018-01-15 15:00:00 11 hr time horizon... +2026-04-29 10:13:07,224 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:08,257 - __main__ - INFO - Finished processing 2018-01-23 16:00:00 7 hr time horizon... +2026-04-29 10:13:08,278 - __main__ - INFO - Processing values: 2018-01-08 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:09,893 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 13 hr time horizon... +2026-04-29 10:13:09,916 - __main__ - INFO - Processing values: 2018-01-10 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:11,545 - __main__ - INFO - Finished processing 2018-01-21 14:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:11,567 - __main__ - INFO - Processing values: 2018-01-15 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:12,672 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 14 hr time horizon... +2026-04-29 10:13:12,693 - __main__ - INFO - Processing values: 2018-01-05 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:13,000 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:13,024 - __main__ - INFO - Processing values: 2018-01-18 19:00:00 12 hr time horizon... +2026-04-29 10:13:13,041 - __main__ - INFO - Finished processing 2018-01-19 14:00:00 15 hr time horizon... +2026-04-29 10:13:13,063 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 4 hr time horizon... +2026-04-29 10:13:13,072 - __main__ - INFO - Finished processing 2018-01-04 01:00:00 5 hr time horizon... +2026-04-29 10:13:13,089 - __main__ - INFO - Processing values: 2018-01-01 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:13,633 - __main__ - INFO - Finished processing 2018-01-12 14:00:00 16 hr time horizon... +2026-04-29 10:13:13,650 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 13 hr time horizon... +2026-04-29 10:13:13,655 - __main__ - INFO - Processing values: 2018-01-10 00:00:00 15 hr time horizon... +2026-04-29 10:13:13,670 - __main__ - INFO - Processing values: 2018-01-19 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:16,179 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 8 hr time horizon... +2026-04-29 10:13:16,203 - __main__ - INFO - Processing values: 2018-01-04 04:00:00 18 hr time horizon... +2026-04-29 10:13:16,329 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 2 hr time horizon... +2026-04-29 10:13:16,351 - __main__ - INFO - Processing values: 2018-01-12 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:16,462 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 8 hr time horizon... +2026-04-29 10:13:16,483 - __main__ - INFO - Processing values: 2018-01-01 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:17,439 - __main__ - INFO - Finished processing 2018-01-06 05:00:00 1 hr time horizon... +2026-04-29 10:13:17,458 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:19,462 - __main__ - INFO - Finished processing 2018-01-16 23:00:00 1 hr time horizon... +2026-04-29 10:13:19,480 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:20,028 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 16 hr time horizon... +2026-04-29 10:13:20,051 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:21,219 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 13 hr time horizon... +2026-04-29 10:13:21,244 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:21,764 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 9 hr time horizon... +2026-04-29 10:13:21,788 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:22,381 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 11 hr time horizon... +2026-04-29 10:13:22,403 - __main__ - INFO - Processing values: 2018-01-02 17:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:23,138 - __main__ - INFO - Finished processing 2018-01-03 17:00:00 12 hr time horizon... +2026-04-29 10:13:23,163 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:24,130 - __main__ - INFO - Finished processing 2018-01-08 03:00:00 2 hr time horizon... +2026-04-29 10:13:24,153 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:26,091 - __main__ - INFO - Finished processing 2018-01-10 04:00:00 16 hr time horizon... +2026-04-29 10:13:26,131 - __main__ - INFO - Processing values: 2018-01-02 00:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:26,679 - __main__ - INFO - Finished processing 2018-01-15 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:26,699 - __main__ - INFO - Processing values: 2018-01-15 23:00:00 10 hr time horizon... +2026-04-29 10:13:26,768 - __main__ - INFO - Finished processing 2018-01-01 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:26,794 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:27,479 - __main__ - INFO - Finished processing 2018-01-05 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:27,499 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:28,572 - __main__ - INFO - Finished processing 2018-01-18 19:00:00 12 hr time horizon... +2026-04-29 10:13:28,593 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 10 hr time horizon... +2026-04-29 10:13:28,601 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 4 hr time horizon... +2026-04-29 10:13:28,623 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:13:28,842 - __main__ - INFO - Finished processing 2018-01-19 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:28,870 - __main__ - INFO - Processing values: 2018-01-08 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:29,465 - __main__ - INFO - Finished processing 2018-01-10 00:00:00 15 hr time horizon... +2026-04-29 10:13:29,492 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:31,136 - __main__ - INFO - Finished processing 2018-01-01 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:31,144 - __main__ - INFO - Finished processing 2018-01-04 04:00:00 18 hr time horizon... +2026-04-29 10:13:31,162 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 5 hr time horizon... +2026-04-29 10:13:31,170 - __main__ - INFO - Processing values: 2018-01-03 07:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:31,565 - __main__ - INFO - Finished processing 2018-01-12 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:31,587 - __main__ - INFO - Processing values: 2018-01-14 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:32,407 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 7 hr time horizon... +2026-04-29 10:13:32,428 - __main__ - INFO - Processing values: 2018-01-29 12:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:33,525 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 6 hr time horizon... +2026-04-29 10:13:33,545 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:34,034 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 1 hr time horizon... +2026-04-29 10:13:34,053 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:35,407 - __main__ - INFO - Finished processing 2018-01-10 08:00:00 17 hr time horizon... +2026-04-29 10:13:35,430 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:13:55,940 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 11 hr time horizon... +2026-04-29 10:13:55,956 - __main__ - INFO - Processing values: 2018-01-28 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:04,681 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 10 hr time horizon... +2026-04-29 10:14:04,698 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 6 hr time horizon... +2026-04-29 10:14:04,701 - __main__ - INFO - Finished processing 2018-01-03 07:00:00 16 hr time horizon... +2026-04-29 10:14:04,721 - __main__ - INFO - Processing values: 2018-01-14 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:06,132 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 11 hr time horizon... +2026-04-29 10:14:06,149 - __main__ - INFO - Processing values: 2018-01-04 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:07,157 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 11 hr time horizon... +2026-04-29 10:14:07,177 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:12,650 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:12,672 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:13,292 - __main__ - INFO - Finished processing 2018-01-02 17:00:00 7 hr time horizon... +2026-04-29 10:14:13,312 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:15,218 - __main__ - INFO - Finished processing 2018-01-02 00:00:00 13 hr time horizon... +2026-04-29 10:14:15,238 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:15,430 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 12 hr time horizon... +2026-04-29 10:14:15,451 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 6 hr time horizon... +2026-04-29 10:14:15,473 - __main__ - INFO - Finished processing 2018-01-28 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:15,496 - __main__ - INFO - Processing values: 2018-01-20 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:16,692 - __main__ - INFO - Finished processing 2018-01-08 15:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:16,722 - __main__ - INFO - Processing values: 2018-01-13 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:17,167 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 8 hr time horizon... +2026-04-29 10:14:17,200 - __main__ - INFO - Processing values: 2018-01-10 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:17,708 - __main__ - INFO - Finished processing 2018-01-14 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:17,732 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:18,234 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 6 hr time horizon... +2026-04-29 10:14:18,260 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:18,772 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 2 hr time horizon... +2026-04-29 10:14:18,782 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 7 hr time horizon... +2026-04-29 10:14:18,794 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 14 hr time horizon... +2026-04-29 10:14:18,809 - __main__ - INFO - Processing values: 2018-01-25 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:19,062 - __main__ - INFO - Finished processing 2018-01-15 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:19,084 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:19,566 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 10 hr time horizon... +2026-04-29 10:14:19,591 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:20,114 - __main__ - INFO - Finished processing 2018-01-04 17:00:00 18 hr time horizon... +2026-04-29 10:14:20,142 - __main__ - INFO - Processing values: 2018-01-09 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:20,785 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 9 hr time horizon... +2026-04-29 10:14:20,811 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 4 hr time horizon... +2026-04-29 10:14:21,347 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 13 hr time horizon... +2026-04-29 10:14:21,374 - __main__ - INFO - Processing values: 2018-01-10 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:25,735 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 9 hr time horizon... +2026-04-29 10:14:25,763 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:25,963 - __main__ - INFO - Finished processing 2018-01-29 12:00:00 3 hr time horizon... +2026-04-29 10:14:25,994 - __main__ - INFO - Processing values: 2018-01-06 12:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:27,076 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 14 hr time horizon... +2026-04-29 10:14:27,102 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:27,299 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:27,322 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:29,105 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 7 hr time horizon... +2026-04-29 10:14:29,127 - __main__ - INFO - Processing values: 2018-01-08 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:30,232 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:30,262 - __main__ - INFO - Processing values: 2018-01-30 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:31,188 - __main__ - INFO - Finished processing 2018-01-13 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:31,212 - __main__ - INFO - Processing values: 2018-01-26 13:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:31,619 - __main__ - INFO - Finished processing 2018-01-10 23:00:00 9 hr time horizon... +2026-04-29 10:14:31,645 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:32,133 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 13 hr time horizon... +2026-04-29 10:14:32,163 - __main__ - INFO - Processing values: 2018-01-28 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:32,655 - __main__ - INFO - Finished processing 2018-01-20 21:00:00 17 hr time horizon... +2026-04-29 10:14:32,689 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:33,269 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 14 hr time horizon... +2026-04-29 10:14:33,297 - __main__ - INFO - Processing values: 2018-01-03 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:33,745 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 9 hr time horizon... +2026-04-29 10:14:33,767 - __main__ - INFO - Processing values: 2018-01-23 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:34,332 - __main__ - INFO - Finished processing 2018-01-25 12:00:00 16 hr time horizon... +2026-04-29 10:14:34,355 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:35,144 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 8 hr time horizon... +2026-04-29 10:14:35,167 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 9 hr time horizon... +2026-04-29 10:14:35,318 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 4 hr time horizon... +2026-04-29 10:14:35,342 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:35,528 - __main__ - INFO - Finished processing 2018-01-09 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:35,552 - __main__ - INFO - Processing values: 2018-01-27 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:36,171 - __main__ - INFO - Finished processing 2018-01-10 06:00:00 18 hr time horizon... +2026-04-29 10:14:36,202 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:37,209 - __main__ - INFO - Finished processing 2018-01-14 19:00:00 16 hr time horizon... +2026-04-29 10:14:37,233 - __main__ - INFO - Processing values: 2018-01-01 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:38,109 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 16 hr time horizon... +2026-04-29 10:14:38,138 - __main__ - INFO - Processing values: 2018-01-05 04:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:40,205 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:40,239 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:41,261 - __main__ - INFO - Finished processing 2018-01-06 12:00:00 11 hr time horizon... +2026-04-29 10:14:41,285 - __main__ - INFO - Processing values: 2018-01-08 00:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:41,736 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 18 hr time horizon... +2026-04-29 10:14:41,755 - __main__ - INFO - Processing values: 2018-01-04 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:14:42,658 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:42,686 - __main__ - INFO - Processing values: 2018-01-29 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:44,590 - __main__ - INFO - Finished processing 2018-01-08 18:00:00 14 hr time horizon... +2026-04-29 10:14:44,615 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:45,309 - __main__ - INFO - Finished processing 2018-01-30 13:00:00 16 hr time horizon... +2026-04-29 10:14:45,333 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:46,546 - __main__ - INFO - Finished processing 2018-01-26 13:00:00 9 hr time horizon... +2026-04-29 10:14:46,568 - __main__ - INFO - Processing values: 2018-01-17 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:46,748 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 6 hr time horizon... +2026-04-29 10:14:46,767 - __main__ - INFO - Processing values: 2018-01-13 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:48,107 - __main__ - INFO - Finished processing 2018-01-28 06:00:00 4 hr time horizon... +2026-04-29 10:14:48,134 - __main__ - INFO - Processing values: 2018-01-17 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:48,506 - __main__ - INFO - Finished processing 2018-01-03 22:00:00 15 hr time horizon... +2026-04-29 10:14:48,527 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:49,244 - __main__ - INFO - Finished processing 2018-01-23 04:00:00 9 hr time horizon... +2026-04-29 10:14:49,270 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:49,984 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 9 hr time horizon... +2026-04-29 10:14:50,005 - __main__ - INFO - Processing values: 2018-01-05 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:50,153 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 17 hr time horizon... +2026-04-29 10:14:50,179 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:50,326 - __main__ - INFO - Finished processing 2018-01-27 10:00:00 1 hr time horizon... +2026-04-29 10:14:50,346 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:51,018 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 4 hr time horizon... +2026-04-29 10:14:51,041 - __main__ - INFO - Processing values: 2018-01-17 23:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:51,591 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 7 hr time horizon... +2026-04-29 10:14:51,613 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:53,767 - __main__ - INFO - Finished processing 2018-01-05 04:00:00 5 hr time horizon... +2026-04-29 10:14:53,786 - __main__ - INFO - Processing values: 2018-01-16 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:54,312 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 6 hr time horizon... +2026-04-29 10:14:54,334 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:56,193 - __main__ - INFO - Finished processing 2018-01-04 06:00:00 5 hr time horizon... +2026-04-29 10:14:56,215 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:57,206 - __main__ - INFO - Finished processing 2018-01-08 00:00:00 14 hr time horizon... +2026-04-29 10:14:57,230 - __main__ - INFO - Processing values: 2018-01-06 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:58,209 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 7 hr time horizon... +2026-04-29 10:14:58,230 - __main__ - INFO - Processing values: 2018-01-19 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:58,533 - __main__ - INFO - Finished processing 2018-01-01 06:00:00 18 hr time horizon... +2026-04-29 10:14:58,554 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:58,743 - __main__ - INFO - Finished processing 2018-01-29 13:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:58,765 - __main__ - INFO - Processing values: 2018-01-24 20:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:59,124 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 17 hr time horizon... +2026-04-29 10:14:59,145 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 2 hr time horizon... +2026-04-29 10:14:59,359 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:14:59,382 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:00,992 - __main__ - INFO - Finished processing 2018-01-13 15:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:01,030 - __main__ - INFO - Processing values: 2018-01-03 17:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:01,803 - __main__ - INFO - Finished processing 2018-01-17 14:00:00 2 hr time horizon... +2026-04-29 10:15:01,825 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:02,468 - __main__ - INFO - Finished processing 2018-01-17 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:02,495 - __main__ - INFO - Processing values: 2018-01-02 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:02,741 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 7 hr time horizon... +2026-04-29 10:15:02,766 - __main__ - INFO - Processing values: 2018-01-28 01:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:03,137 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 2 hr time horizon... +2026-04-29 10:15:03,157 - __main__ - INFO - Processing values: 2018-01-28 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:04,118 - __main__ - INFO - Finished processing 2018-01-05 21:00:00 15 hr time horizon... +2026-04-29 10:15:04,143 - __main__ - INFO - Processing values: 2018-01-11 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:04,631 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 3 hr time horizon... +2026-04-29 10:15:04,653 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 10 hr time horizon... +2026-04-29 10:15:04,676 - __main__ - INFO - Finished processing 2018-01-27 21:00:00 8 hr time horizon... +2026-04-29 10:15:04,701 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:05,937 - __main__ - INFO - Finished processing 2018-01-17 23:00:00 12 hr time horizon... +2026-04-29 10:15:05,963 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:07,806 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 5 hr time horizon... +2026-04-29 10:15:07,829 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:08,794 - __main__ - INFO - Finished processing 2018-01-16 09:00:00 7 hr time horizon... +2026-04-29 10:15:08,814 - __main__ - INFO - Processing values: 2018-01-23 09:00:00 13 hr time horizon... +2026-04-29 10:15:08,971 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 10 hr time horizon... +2026-04-29 10:15:08,993 - __main__ - INFO - Processing values: 2018-01-25 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:11,235 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 14 hr time horizon... +2026-04-29 10:15:11,260 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:12,182 - __main__ - INFO - Finished processing 2018-01-06 22:00:00 3 hr time horizon... +2026-04-29 10:15:12,200 - __main__ - INFO - Processing values: 2018-01-19 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:12,614 - __main__ - INFO - Finished processing 2018-01-19 16:00:00 3 hr time horizon... +2026-04-29 10:15:12,635 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:13,077 - __main__ - INFO - Finished processing 2018-01-24 20:00:00 4 hr time horizon... +2026-04-29 10:15:13,095 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:15,466 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 14 hr time horizon... +2026-04-29 10:15:15,499 - __main__ - INFO - Processing values: 2018-01-09 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:16,086 - __main__ - INFO - Finished processing 2018-01-02 10:00:00 7 hr time horizon... +2026-04-29 10:15:16,113 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:16,448 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 17 hr time horizon... +2026-04-29 10:15:16,473 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:16,937 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:16,956 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:17,828 - __main__ - INFO - Finished processing 2018-01-28 01:00:00 5 hr time horizon... +2026-04-29 10:15:17,849 - __main__ - INFO - Processing values: 2018-01-03 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:18,186 - __main__ - INFO - Finished processing 2018-01-11 18:00:00 18 hr time horizon... +2026-04-29 10:15:18,196 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 7 hr time horizon... +2026-04-29 10:15:18,212 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 1 hr time horizon... +2026-04-29 10:15:18,221 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:18,465 - __main__ - INFO - Finished processing 2018-01-28 15:00:00 2 hr time horizon... +2026-04-29 10:15:18,484 - __main__ - INFO - Processing values: 2018-01-10 12:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:19,868 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 5 hr time horizon... +2026-04-29 10:15:19,890 - __main__ - INFO - Processing values: 2018-01-25 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:20,382 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 10 hr time horizon... +2026-04-29 10:15:20,404 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 9 hr time horizon... +2026-04-29 10:15:20,487 - __main__ - INFO - Finished processing 2018-01-03 17:00:00 15 hr time horizon... +2026-04-29 10:15:20,510 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:21,347 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 4 hr time horizon... +2026-04-29 10:15:21,371 - __main__ - INFO - Processing values: 2018-01-13 01:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:21,496 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 17 hr time horizon... +2026-04-29 10:15:21,516 - __main__ - INFO - Processing values: 2018-01-04 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:23,145 - __main__ - INFO - Finished processing 2018-01-23 09:00:00 13 hr time horizon... +2026-04-29 10:15:23,168 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:26,479 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 1 hr time horizon... +2026-04-29 10:15:26,499 - __main__ - INFO - Processing values: 2018-01-10 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:26,820 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 9 hr time horizon... +2026-04-29 10:15:26,841 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 3 hr time horizon... +2026-04-29 10:15:26,955 - __main__ - INFO - Finished processing 2018-01-25 01:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:26,977 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 9 hr time horizon... +2026-04-29 10:15:27,028 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:27,048 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 12 hr time horizon... +2026-04-29 10:15:27,083 - __main__ - INFO - Finished processing 2018-01-19 02:00:00 15 hr time horizon... +2026-04-29 10:15:27,103 - __main__ - INFO - Processing values: 2018-01-08 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:29,509 - __main__ - INFO - Finished processing 2018-01-09 21:00:00 7 hr time horizon... +2026-04-29 10:15:29,532 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:29,797 - __main__ - INFO - Finished processing 2018-01-04 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:29,817 - __main__ - INFO - Processing values: 2018-01-01 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:31,737 - __main__ - INFO - Finished processing 2018-01-03 05:00:00 15 hr time horizon... +2026-04-29 10:15:31,760 - __main__ - INFO - Processing values: 2018-01-28 18:00:00 4 hr time horizon... +2026-04-29 10:15:31,772 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 14 hr time horizon... +2026-04-29 10:15:31,805 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:32,759 - __main__ - INFO - Finished processing 2018-01-10 12:00:00 16 hr time horizon... +2026-04-29 10:15:32,781 - __main__ - INFO - Processing values: 2018-01-11 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:33,235 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 18 hr time horizon... +2026-04-29 10:15:33,260 - __main__ - INFO - Processing values: 2018-01-10 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:33,498 - __main__ - INFO - Finished processing 2018-01-20 05:00:00 1 hr time horizon... +2026-04-29 10:15:33,517 - __main__ - INFO - Processing values: 2018-01-26 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:35,070 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 9 hr time horizon... +2026-04-29 10:15:35,092 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:35,269 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 10 hr time horizon... +2026-04-29 10:15:35,292 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 2 hr time horizon... +2026-04-29 10:15:35,397 - __main__ - INFO - Finished processing 2018-01-25 07:00:00 3 hr time horizon... +2026-04-29 10:15:35,416 - __main__ - INFO - Processing values: 2018-01-03 11:00:00 3 hr time horizon... +2026-04-29 10:15:35,457 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 12 hr time horizon... +2026-04-29 10:15:35,496 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:35,584 - __main__ - INFO - Finished processing 2018-01-13 01:00:00 17 hr time horizon... +2026-04-29 10:15:35,603 - __main__ - INFO - Processing values: 2018-01-05 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:37,567 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 1 hr time horizon... +2026-04-29 10:15:37,588 - __main__ - INFO - Processing values: 2018-01-04 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:39,836 - __main__ - INFO - Finished processing 2018-01-04 02:00:00 11 hr time horizon... +2026-04-29 10:15:39,856 - __main__ - INFO - Processing values: 2018-01-03 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:41,204 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 9 hr time horizon... +2026-04-29 10:15:41,225 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 8 hr time horizon... +2026-04-29 10:15:41,275 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:15:41,304 - __main__ - INFO - Processing values: 2018-01-09 12:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:41,712 - __main__ - INFO - Finished processing 2018-01-08 22:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:41,736 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 12 hr time horizon... +2026-04-29 10:15:41,811 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 3 hr time horizon... +2026-04-29 10:15:41,830 - __main__ - INFO - Processing values: 2018-01-19 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:42,758 - __main__ - INFO - Finished processing 2018-01-10 18:00:00 4 hr time horizon... +2026-04-29 10:15:42,790 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:43,925 - __main__ - INFO - Finished processing 2018-01-01 12:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:43,950 - __main__ - INFO - Processing values: 2018-01-10 17:00:00 8 hr time horizon... +2026-04-29 10:15:44,115 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 6 hr time horizon... +2026-04-29 10:15:44,137 - __main__ - INFO - Processing values: 2018-01-10 16:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:45,810 - __main__ - INFO - Finished processing 2018-01-28 18:00:00 4 hr time horizon... +2026-04-29 10:15:45,830 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:46,504 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 3 hr time horizon... +2026-04-29 10:15:46,525 - __main__ - INFO - Processing values: 2018-01-09 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:48,097 - __main__ - INFO - Finished processing 2018-01-26 18:00:00 13 hr time horizon... +2026-04-29 10:15:48,120 - __main__ - INFO - Processing values: 2018-01-02 21:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:48,333 - __main__ - INFO - Finished processing 2018-01-10 20:00:00 2 hr time horizon... +2026-04-29 10:15:48,373 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:48,858 - __main__ - INFO - Finished processing 2018-01-11 08:00:00 15 hr time horizon... +2026-04-29 10:15:48,884 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:49,882 - __main__ - INFO - Finished processing 2018-01-03 11:00:00 3 hr time horizon... +2026-04-29 10:15:49,906 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:50,298 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 2 hr time horizon... +2026-04-29 10:15:50,323 - __main__ - INFO - Processing values: 2018-01-25 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:50,492 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 17 hr time horizon... +2026-04-29 10:15:50,515 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:50,807 - __main__ - INFO - Finished processing 2018-01-05 11:00:00 16 hr time horizon... +2026-04-29 10:15:50,829 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:51,795 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 8 hr time horizon... +2026-04-29 10:15:51,821 - __main__ - INFO - Processing values: 2018-01-24 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:52,893 - __main__ - INFO - Finished processing 2018-01-04 14:00:00 16 hr time horizon... +2026-04-29 10:15:52,916 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:55,948 - __main__ - INFO - Finished processing 2018-01-03 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:55,972 - __main__ - INFO - Processing values: 2018-01-13 08:00:00 13 hr time horizon... +2026-04-29 10:15:56,024 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 8 hr time horizon... +2026-04-29 10:15:56,049 - __main__ - INFO - Processing values: 2018-01-09 00:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:56,584 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 12 hr time horizon... +2026-04-29 10:15:56,603 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 12 hr time horizon... +2026-04-29 10:15:56,675 - __main__ - INFO - Finished processing 2018-01-09 12:00:00 8 hr time horizon... +2026-04-29 10:15:56,699 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:56,929 - __main__ - INFO - Finished processing 2018-01-19 21:00:00 14 hr time horizon... +2026-04-29 10:15:56,951 - __main__ - INFO - Processing values: 2018-01-14 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:57,134 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 6 hr time horizon... +2026-04-29 10:15:57,153 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:59,300 - __main__ - INFO - Finished processing 2018-01-10 16:00:00 3 hr time horizon... +2026-04-29 10:15:59,323 - __main__ - INFO - Processing values: 2018-01-29 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:15:59,441 - __main__ - INFO - Finished processing 2018-01-10 17:00:00 8 hr time horizon... +2026-04-29 10:15:59,462 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:00,443 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 5 hr time horizon... +2026-04-29 10:16:00,465 - __main__ - INFO - Processing values: 2018-01-18 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:01,259 - __main__ - INFO - Finished processing 2018-01-09 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:01,282 - __main__ - INFO - Processing values: 2018-01-07 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:02,437 - __main__ - INFO - Finished processing 2018-01-02 21:00:00 1 hr time horizon... +2026-04-29 10:16:02,462 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:02,850 - __main__ - INFO - Finished processing 2018-01-20 10:00:00 9 hr time horizon... +2026-04-29 10:16:02,877 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:03,520 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:03,550 - __main__ - INFO - Processing values: 2018-01-16 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:04,880 - __main__ - INFO - Finished processing 2018-01-25 11:00:00 5 hr time horizon... +2026-04-29 10:16:04,900 - __main__ - INFO - Processing values: 2018-01-12 06:00:00 12 hr time horizon... +2026-04-29 10:16:05,078 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 5 hr time horizon... +2026-04-29 10:16:05,099 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:05,188 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 7 hr time horizon... +2026-04-29 10:16:05,217 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 18 hr time horizon... +2026-04-29 10:16:05,763 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 15 hr time horizon... +2026-04-29 10:16:05,783 - __main__ - INFO - Processing values: 2018-01-24 16:00:00 14 hr time horizon... +2026-04-29 10:16:05,786 - __main__ - INFO - Finished processing 2018-01-24 10:00:00 17 hr time horizon... +2026-04-29 10:16:05,804 - __main__ - INFO - Processing values: 2018-01-07 02:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:08,957 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:08,986 - __main__ - INFO - Processing values: 2018-01-02 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:09,758 - __main__ - INFO - Finished processing 2018-01-13 08:00:00 13 hr time horizon... +2026-04-29 10:16:09,779 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:10,734 - __main__ - INFO - Finished processing 2018-01-09 00:00:00 10 hr time horizon... +2026-04-29 10:16:10,760 - __main__ - INFO - Processing values: 2018-01-24 18:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:10,993 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 15 hr time horizon... +2026-04-29 10:16:11,016 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:11,593 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 17 hr time horizon... +2026-04-29 10:16:11,615 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:11,742 - __main__ - INFO - Finished processing 2018-01-14 14:00:00 12 hr time horizon... +2026-04-29 10:16:11,765 - __main__ - INFO - Processing values: 2018-01-12 09:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:12,124 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 12 hr time horizon... +2026-04-29 10:16:12,145 - __main__ - INFO - Processing values: 2018-01-23 05:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:13,415 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 12 hr time horizon... +2026-04-29 10:16:13,440 - __main__ - INFO - Processing values: 2018-01-06 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:15,090 - __main__ - INFO - Finished processing 2018-01-18 21:00:00 12 hr time horizon... +2026-04-29 10:16:15,115 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:16,068 - __main__ - INFO - Finished processing 2018-01-29 14:00:00 13 hr time horizon... +2026-04-29 10:16:16,092 - __main__ - INFO - Processing values: 2018-01-29 04:00:00 11 hr time horizon... +2026-04-29 10:16:16,180 - __main__ - INFO - Finished processing 2018-01-07 05:00:00 11 hr time horizon... +2026-04-29 10:16:16,207 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:16,453 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 7 hr time horizon... +2026-04-29 10:16:16,473 - __main__ - INFO - Processing values: 2018-01-02 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:16,879 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 7 hr time horizon... +2026-04-29 10:16:16,901 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:17,779 - __main__ - INFO - Finished processing 2018-01-16 00:00:00 5 hr time horizon... +2026-04-29 10:16:17,798 - __main__ - INFO - Processing values: 2018-01-10 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:20,154 - __main__ - INFO - Finished processing 2018-01-12 06:00:00 12 hr time horizon... +2026-04-29 10:16:20,177 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 15 hr time horizon... +2026-04-29 10:16:20,252 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 1 hr time horizon... +2026-04-29 10:16:20,268 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:20,389 - __main__ - INFO - Finished processing 2018-01-07 02:00:00 7 hr time horizon... +2026-04-29 10:16:20,409 - __main__ - INFO - Processing values: 2018-01-12 02:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:21,003 - __main__ - INFO - Finished processing 2018-01-24 16:00:00 14 hr time horizon... +2026-04-29 10:16:21,022 - __main__ - INFO - Processing values: 2018-01-16 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:21,961 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 18 hr time horizon... +2026-04-29 10:16:21,987 - __main__ - INFO - Processing values: 2018-01-27 06:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:27,801 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 9 hr time horizon... +2026-04-29 10:16:27,802 - __main__ - INFO - Finished processing 2018-01-24 18:00:00 17 hr time horizon... +2026-04-29 10:16:27,806 - __main__ - INFO - Finished processing 2018-01-23 05:00:00 8 hr time horizon... +2026-04-29 10:16:27,837 - __main__ - INFO - Processing values: 2018-01-04 19:00:00 8 hr time horizon... +2026-04-29 10:16:27,843 - __main__ - INFO - Processing values: 2018-01-15 02:00:00 18 hr time horizon... +2026-04-29 10:16:27,843 - __main__ - INFO - Processing values: 2018-01-28 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:30,800 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 9 hr time horizon... +2026-04-29 10:16:30,817 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:32,947 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 3 hr time horizon... +2026-04-29 10:16:32,964 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:36,126 - __main__ - INFO - Finished processing 2018-01-02 16:00:00 18 hr time horizon... +2026-04-29 10:16:36,144 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:40,677 - __main__ - INFO - Finished processing 2018-01-15 02:00:00 18 hr time horizon... +2026-04-29 10:16:40,697 - __main__ - INFO - Processing values: 2018-01-25 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:40,804 - __main__ - INFO - Finished processing 2018-01-28 08:00:00 4 hr time horizon... +2026-04-29 10:16:40,821 - __main__ - INFO - Processing values: 2018-01-19 12:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:43,219 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 2 hr time horizon... +2026-04-29 10:16:43,235 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 9 hr time horizon... +2026-04-29 10:16:43,312 - __main__ - INFO - Finished processing 2018-01-04 19:00:00 8 hr time horizon... +2026-04-29 10:16:43,329 - __main__ - INFO - Processing values: 2018-01-06 03:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:46,191 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 11 hr time horizon... +2026-04-29 10:16:46,209 - __main__ - INFO - Processing values: 2018-01-05 08:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:48,665 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 3 hr time horizon... +2026-04-29 10:16:48,683 - __main__ - INFO - Processing values: 2018-01-17 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:54,723 - __main__ - INFO - Finished processing 2018-01-25 14:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:54,740 - __main__ - INFO - Processing values: 2018-01-18 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:56,297 - __main__ - INFO - Finished processing 2018-01-19 12:00:00 6 hr time horizon... +2026-04-29 10:16:56,315 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 4 hr time horizon... +2026-04-29 10:16:56,323 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 9 hr time horizon... +2026-04-29 10:16:56,341 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:57,233 - __main__ - INFO - Finished processing 2018-01-06 03:00:00 5 hr time horizon... +2026-04-29 10:16:57,251 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:16:58,954 - __main__ - INFO - Finished processing 2018-01-05 08:00:00 16 hr time horizon... +2026-04-29 10:16:58,973 - __main__ - INFO - Processing values: 2018-01-01 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:02,982 - __main__ - INFO - Finished processing 2018-01-17 22:00:00 2 hr time horizon... +2026-04-29 10:17:02,999 - __main__ - INFO - Processing values: 2018-01-04 18:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:09,341 - __main__ - INFO - Finished processing 2018-01-16 22:00:00 11 hr time horizon... +2026-04-29 10:17:09,361 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:10,003 - __main__ - INFO - Finished processing 2018-01-18 06:00:00 5 hr time horizon... +2026-04-29 10:17:10,021 - __main__ - INFO - Processing values: 2018-01-19 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:12,820 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:12,841 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:13,623 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 3 hr time horizon... +2026-04-29 10:17:13,640 - __main__ - INFO - Processing values: 2018-01-10 15:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:14,137 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:14,161 - __main__ - INFO - Processing values: 2018-01-16 06:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:15,198 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 3 hr time horizon... +2026-04-29 10:17:15,218 - __main__ - INFO - Processing values: 2018-01-17 18:00:00 2 hr time horizon... +2026-04-29 10:17:15,674 - __main__ - INFO - Finished processing 2018-01-29 04:00:00 11 hr time horizon... +2026-04-29 10:17:15,692 - __main__ - INFO - Processing values: 2018-01-06 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:19,872 - __main__ - INFO - Finished processing 2018-01-12 02:00:00 16 hr time horizon... +2026-04-29 10:17:19,892 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:21,072 - __main__ - INFO - Finished processing 2018-01-02 04:00:00 11 hr time horizon... +2026-04-29 10:17:21,091 - __main__ - INFO - Processing values: 2018-01-17 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:22,564 - __main__ - INFO - Finished processing 2018-01-19 07:00:00 2 hr time horizon... +2026-04-29 10:17:22,582 - __main__ - INFO - Processing values: 2018-01-24 11:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:23,984 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 12 hr time horizon... +2026-04-29 10:17:24,010 - __main__ - INFO - Processing values: 2018-01-21 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:24,769 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:24,790 - __main__ - INFO - Processing values: 2018-01-12 04:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:25,734 - __main__ - INFO - Finished processing 2018-01-01 04:00:00 11 hr time horizon... +2026-04-29 10:17:25,752 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:27,560 - __main__ - INFO - Finished processing 2018-01-10 19:00:00 14 hr time horizon... +2026-04-29 10:17:27,584 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:27,599 - __main__ - INFO - Finished processing 2018-01-16 06:00:00 6 hr time horizon... +2026-04-29 10:17:27,621 - __main__ - INFO - Processing values: 2018-01-09 14:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:27,718 - __main__ - INFO - Finished processing 2018-01-10 15:00:00 2 hr time horizon... +2026-04-29 10:17:27,740 - __main__ - INFO - Processing values: 2018-01-08 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:27,798 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 18 hr time horizon... +2026-04-29 10:17:27,819 - __main__ - INFO - Processing values: 2018-01-17 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:28,173 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 10 hr time horizon... +2026-04-29 10:17:28,191 - __main__ - INFO - Processing values: 2018-01-12 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:29,009 - __main__ - INFO - Finished processing 2018-01-17 18:00:00 2 hr time horizon... +2026-04-29 10:17:29,026 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 5 hr time horizon... +2026-04-29 10:17:29,218 - __main__ - INFO - Finished processing 2018-01-06 08:00:00 12 hr time horizon... +2026-04-29 10:17:29,242 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:34,695 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:34,719 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:35,306 - __main__ - INFO - Finished processing 2018-01-17 01:00:00 10 hr time horizon... +2026-04-29 10:17:35,328 - __main__ - INFO - Processing values: 2018-01-04 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:36,839 - __main__ - INFO - Finished processing 2018-01-24 11:00:00 13 hr time horizon... +2026-04-29 10:17:36,859 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:37,010 - __main__ - INFO - Finished processing 2018-01-27 06:00:00 11 hr time horizon... +2026-04-29 10:17:37,035 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 12 hr time horizon... +2026-04-29 10:17:37,535 - __main__ - INFO - Finished processing 2018-01-21 12:00:00 7 hr time horizon... +2026-04-29 10:17:37,560 - __main__ - INFO - Processing values: 2018-01-11 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:40,792 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 7 hr time horizon... +2026-04-29 10:17:40,813 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 6 hr time horizon... +2026-04-29 10:17:40,843 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 4 hr time horizon... +2026-04-29 10:17:40,864 - __main__ - INFO - Processing values: 2018-01-21 08:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:40,961 - __main__ - INFO - Finished processing 2018-01-09 14:00:00 4 hr time horizon... +2026-04-29 10:17:40,986 - __main__ - INFO - Processing values: 2018-01-08 08:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:41,211 - __main__ - INFO - Finished processing 2018-01-17 03:00:00 13 hr time horizon... +2026-04-29 10:17:41,235 - __main__ - INFO - Processing values: 2018-01-12 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:41,684 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 2 hr time horizon... +2026-04-29 10:17:41,701 - __main__ - INFO - Processing values: 2018-01-04 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:42,517 - __main__ - INFO - Finished processing 2018-01-12 04:00:00 17 hr time horizon... +2026-04-29 10:17:42,543 - __main__ - INFO - Processing values: 2018-01-26 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:43,572 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 5 hr time horizon... +2026-04-29 10:17:43,591 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:45,207 - __main__ - INFO - Finished processing 2018-01-12 08:00:00 8 hr time horizon... +2026-04-29 10:17:45,230 - __main__ - INFO - Processing values: 2018-01-07 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:47,059 - __main__ - INFO - Finished processing 2018-01-08 13:00:00 10 hr time horizon... +2026-04-29 10:17:47,086 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:48,526 - __main__ - INFO - Finished processing 2018-01-04 20:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:48,554 - __main__ - INFO - Processing values: 2018-01-01 22:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:48,762 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 8 hr time horizon... +2026-04-29 10:17:48,783 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:49,523 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 7 hr time horizon... +2026-04-29 10:17:49,542 - __main__ - INFO - Processing values: 2018-01-11 17:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:50,131 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 12 hr time horizon... +2026-04-29 10:17:50,159 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:51,238 - __main__ - INFO - Finished processing 2018-01-11 03:00:00 2 hr time horizon... +2026-04-29 10:17:51,265 - __main__ - INFO - Processing values: 2018-01-25 05:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:51,710 - __main__ - INFO - Finished processing 2018-01-06 20:00:00 13 hr time horizon... +2026-04-29 10:17:51,739 - __main__ - INFO - Processing values: 2018-01-22 10:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:52,730 - __main__ - INFO - Finished processing 2018-01-12 09:00:00 12 hr time horizon... +2026-04-29 10:17:52,757 - __main__ - INFO - Processing values: 2018-01-14 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:54,311 - __main__ - INFO - Finished processing 2018-01-21 08:00:00 3 hr time horizon... +2026-04-29 10:17:54,334 - __main__ - INFO - Processing values: 2018-01-19 23:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:55,093 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 6 hr time horizon... +2026-04-29 10:17:55,108 - __main__ - INFO - Finished processing 2018-01-12 07:00:00 5 hr time horizon... +2026-04-29 10:17:55,115 - __main__ - INFO - Processing values: 2018-01-18 22:00:00 3 hr time horizon... +2026-04-29 10:17:55,130 - __main__ - INFO - Processing values: 2018-01-02 23:00:00 8 hr time horizon... +2026-04-29 10:17:55,132 - __main__ - INFO - Finished processing 2018-01-08 08:00:00 12 hr time horizon... +2026-04-29 10:17:55,158 - __main__ - INFO - Processing values: 2018-01-28 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:58,902 - __main__ - INFO - Finished processing 2018-01-04 00:00:00 9 hr time horizon... +2026-04-29 10:17:58,927 - __main__ - INFO - Processing values: 2018-01-07 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:59,090 - __main__ - INFO - Finished processing 2018-01-26 19:00:00 12 hr time horizon... +2026-04-29 10:17:59,113 - __main__ - INFO - Processing values: 2018-01-17 20:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:17:59,654 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 10 hr time horizon... +2026-04-29 10:17:59,675 - __main__ - INFO - Processing values: 2018-01-12 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:00,471 - __main__ - INFO - Finished processing 2018-01-07 01:00:00 12 hr time horizon... +2026-04-29 10:18:00,497 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:01,012 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 11 hr time horizon... +2026-04-29 10:18:01,034 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:01,878 - __main__ - INFO - Finished processing 2018-01-01 22:00:00 9 hr time horizon... +2026-04-29 10:18:01,897 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:04,880 - __main__ - INFO - Finished processing 2018-01-11 17:00:00 2 hr time horizon... +2026-04-29 10:18:04,905 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:05,079 - __main__ - INFO - Finished processing 2018-01-14 21:00:00 6 hr time horizon... +2026-04-29 10:18:05,099 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:05,455 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 12 hr time horizon... +2026-04-29 10:18:05,478 - __main__ - INFO - Processing values: 2018-01-22 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:05,962 - __main__ - INFO - Finished processing 2018-01-25 05:00:00 4 hr time horizon... +2026-04-29 10:18:05,986 - __main__ - INFO - Processing values: 2018-01-08 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:06,582 - __main__ - INFO - Finished processing 2018-01-22 10:00:00 5 hr time horizon... +2026-04-29 10:18:06,608 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 12 hr time horizon... +2026-04-29 10:18:06,712 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 8 hr time horizon... +2026-04-29 10:18:06,741 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:06,965 - __main__ - INFO - Finished processing 2018-01-14 02:00:00 10 hr time horizon... +2026-04-29 10:18:06,987 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:09,851 - __main__ - INFO - Finished processing 2018-01-28 14:00:00 1 hr time horizon... +2026-04-29 10:18:09,873 - __main__ - INFO - Processing values: 2018-01-29 02:00:00 3 hr time horizon... +2026-04-29 10:18:10,026 - __main__ - INFO - Finished processing 2018-01-18 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:10,058 - __main__ - INFO - Processing values: 2018-01-15 12:00:00 1 hr time horizon... +2026-04-29 10:18:10,268 - __main__ - INFO - Finished processing 2018-01-02 23:00:00 8 hr time horizon... +2026-04-29 10:18:10,293 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 11 hr time horizon... +2026-04-29 10:18:10,667 - __main__ - INFO - Finished processing 2018-01-04 18:00:00 18 hr time horizon... +2026-04-29 10:18:10,690 - __main__ - INFO - Processing values: 2018-01-20 16:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:14,388 - __main__ - INFO - Finished processing 2018-01-17 20:00:00 9 hr time horizon... +2026-04-29 10:18:14,410 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:14,467 - __main__ - INFO - Finished processing 2018-01-07 07:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:14,493 - __main__ - INFO - Processing values: 2018-01-30 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:14,995 - __main__ - INFO - Finished processing 2018-01-12 10:00:00 1 hr time horizon... +2026-04-29 10:18:15,016 - __main__ - INFO - Processing values: 2018-01-13 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:15,590 - __main__ - INFO - Finished processing 2018-01-19 23:00:00 14 hr time horizon... +2026-04-29 10:18:15,617 - __main__ - INFO - Processing values: 2018-01-12 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:15,747 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 7 hr time horizon... +2026-04-29 10:18:15,770 - __main__ - INFO - Processing values: 2018-01-01 14:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:16,341 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 6 hr time horizon... +2026-04-29 10:18:16,363 - __main__ - INFO - Processing values: 2018-01-10 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:16,619 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 18 hr time horizon... +2026-04-29 10:18:16,647 - __main__ - INFO - Processing values: 2018-01-11 09:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:17,216 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 8 hr time horizon... +2026-04-29 10:18:17,240 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:19,713 - __main__ - INFO - Finished processing 2018-01-22 07:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:19,739 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 18 hr time horizon... +2026-04-29 10:18:19,894 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 1 hr time horizon... +2026-04-29 10:18:19,914 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:20,276 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 4 hr time horizon... +2026-04-29 10:18:20,304 - __main__ - INFO - Processing values: 2018-01-14 03:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:22,159 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 4 hr time horizon... +2026-04-29 10:18:22,182 - __main__ - INFO - Processing values: 2018-01-28 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:22,495 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 17 hr time horizon... +2026-04-29 10:18:22,515 - __main__ - INFO - Processing values: 2018-01-30 20:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:22,773 - __main__ - INFO - Finished processing 2018-01-08 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:22,799 - __main__ - INFO - Processing values: 2018-01-21 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:23,217 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 12 hr time horizon... +2026-04-29 10:18:23,240 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:24,611 - __main__ - INFO - Finished processing 2018-01-15 12:00:00 1 hr time horizon... +2026-04-29 10:18:24,630 - __main__ - INFO - Processing values: 2018-01-18 15:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:25,007 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 11 hr time horizon... +2026-04-29 10:18:25,042 - __main__ - INFO - Processing values: 2018-01-09 08:00:00 8 hr time horizon... +2026-04-29 10:18:25,577 - __main__ - INFO - Finished processing 2018-01-29 02:00:00 3 hr time horizon... +2026-04-29 10:18:25,595 - __main__ - INFO - Processing values: 2018-01-15 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:29,737 - __main__ - INFO - Finished processing 2018-01-20 16:00:00 11 hr time horizon... +2026-04-29 10:18:29,761 - __main__ - INFO - Processing values: 2018-01-30 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:30,044 - __main__ - INFO - Finished processing 2018-01-30 23:00:00 18 hr time horizon... +2026-04-29 10:18:30,068 - __main__ - INFO - Processing values: 2018-01-26 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:30,115 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 10 hr time horizon... +2026-04-29 10:18:30,138 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 17 hr time horizon... +2026-04-29 10:18:30,168 - __main__ - INFO - Finished processing 2018-01-13 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:30,191 - __main__ - INFO - Processing values: 2018-01-16 10:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:30,748 - __main__ - INFO - Finished processing 2018-01-01 14:00:00 11 hr time horizon... +2026-04-29 10:18:30,770 - __main__ - INFO - Processing values: 2018-01-14 22:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:30,941 - __main__ - INFO - Finished processing 2018-01-12 12:00:00 1 hr time horizon... +2026-04-29 10:18:30,963 - __main__ - INFO - Processing values: 2018-01-13 23:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:32,266 - __main__ - INFO - Finished processing 2018-01-11 09:00:00 6 hr time horizon... +2026-04-29 10:18:32,289 - __main__ - INFO - Processing values: 2018-01-11 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:33,692 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 9 hr time horizon... +2026-04-29 10:18:33,713 - __main__ - INFO - Processing values: 2018-01-22 13:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:33,815 - __main__ - INFO - Finished processing 2018-01-10 07:00:00 11 hr time horizon... +2026-04-29 10:18:33,839 - __main__ - INFO - Processing values: 2018-01-02 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:34,947 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:34,969 - __main__ - INFO - Processing values: 2018-01-04 16:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:35,502 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 12 hr time horizon... +2026-04-29 10:18:35,524 - __main__ - INFO - Processing values: 2018-01-17 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:36,105 - __main__ - INFO - Finished processing 2018-01-14 03:00:00 17 hr time horizon... +2026-04-29 10:18:36,128 - __main__ - INFO - Processing values: 2018-01-02 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:37,196 - __main__ - INFO - Finished processing 2018-01-30 20:00:00 1 hr time horizon... +2026-04-29 10:18:37,217 - __main__ - INFO - Processing values: 2018-01-20 23:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:38,125 - __main__ - INFO - Finished processing 2018-01-21 04:00:00 13 hr time horizon... +2026-04-29 10:18:38,148 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:38,251 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 18 hr time horizon... +2026-04-29 10:18:38,273 - __main__ - INFO - Processing values: 2018-01-29 06:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:39,488 - __main__ - INFO - Finished processing 2018-01-18 15:00:00 18 hr time horizon... +2026-04-29 10:18:39,513 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:42,494 - __main__ - INFO - Finished processing 2018-01-28 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:42,518 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:43,821 - __main__ - INFO - Finished processing 2018-01-30 19:00:00 8 hr time horizon... +2026-04-29 10:18:43,844 - __main__ - INFO - Processing values: 2018-01-18 05:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:43,864 - __main__ - INFO - Finished processing 2018-01-16 10:00:00 1 hr time horizon... +2026-04-29 10:18:43,881 - __main__ - INFO - Processing values: 2018-01-31 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:44,123 - __main__ - INFO - Finished processing 2018-01-13 23:00:00 5 hr time horizon... +2026-04-29 10:18:44,139 - __main__ - INFO - Processing values: 2018-01-01 01:00:00 16 hr time horizon... +2026-04-29 10:18:44,153 - __main__ - INFO - Finished processing 2018-01-09 08:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:44,180 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:44,721 - __main__ - INFO - Finished processing 2018-01-26 14:00:00 12 hr time horizon... +2026-04-29 10:18:44,740 - __main__ - INFO - Processing values: 2018-01-13 13:00:00 14 hr time horizon... +2026-04-29 10:18:44,775 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 17 hr time horizon... +2026-04-29 10:18:44,795 - __main__ - INFO - Processing values: 2018-01-26 05:00:00 15 hr time horizon... +2026-04-29 10:18:44,827 - __main__ - INFO - Finished processing 2018-01-15 06:00:00 16 hr time horizon... +2026-04-29 10:18:44,850 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:46,322 - __main__ - INFO - Finished processing 2018-01-11 22:00:00 4 hr time horizon... +2026-04-29 10:18:46,346 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:47,612 - __main__ - INFO - Finished processing 2018-01-22 13:00:00 14 hr time horizon... +2026-04-29 10:18:47,641 - __main__ - INFO - Processing values: 2018-01-03 00:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:48,729 - __main__ - INFO - Finished processing 2018-01-04 16:00:00 5 hr time horizon... +2026-04-29 10:18:48,732 - __main__ - INFO - Finished processing 2018-01-02 02:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:48,760 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 11 hr time horizon... +2026-04-29 10:18:48,763 - __main__ - INFO - Processing values: 2018-01-25 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:50,429 - __main__ - INFO - Finished processing 2018-01-17 21:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:50,455 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 2 hr time horizon... +2026-04-29 10:18:50,608 - __main__ - INFO - Finished processing 2018-01-14 22:00:00 3 hr time horizon... +2026-04-29 10:18:50,627 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:52,257 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 12 hr time horizon... +2026-04-29 10:18:52,279 - __main__ - INFO - Processing values: 2018-01-23 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:53,002 - __main__ - INFO - Finished processing 2018-01-29 06:00:00 3 hr time horizon... +2026-04-29 10:18:53,022 - __main__ - INFO - Processing values: 2018-01-21 20:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:54,824 - __main__ - INFO - Finished processing 2018-01-02 05:00:00 14 hr time horizon... +2026-04-29 10:18:54,846 - __main__ - INFO - Processing values: 2018-01-08 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:56,335 - __main__ - INFO - Finished processing 2018-01-20 23:00:00 3 hr time horizon... +2026-04-29 10:18:56,354 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:57,415 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 5 hr time horizon... +2026-04-29 10:18:57,440 - __main__ - INFO - Processing values: 2018-01-16 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:58,487 - __main__ - INFO - Finished processing 2018-01-01 01:00:00 16 hr time horizon... +2026-04-29 10:18:58,509 - __main__ - INFO - Processing values: 2018-01-22 01:00:00 8 hr time horizon... +2026-04-29 10:18:58,547 - __main__ - INFO - Finished processing 2018-01-31 00:00:00 7 hr time horizon... +2026-04-29 10:18:58,574 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 11 hr time horizon... +2026-04-29 10:18:58,601 - __main__ - INFO - Finished processing 2018-01-13 13:00:00 14 hr time horizon... +2026-04-29 10:18:58,621 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:18:58,746 - __main__ - INFO - Finished processing 2018-01-28 13:00:00 10 hr time horizon... +2026-04-29 10:18:58,767 - __main__ - INFO - Processing values: 2018-01-04 13:00:00 17 hr time horizon... +2026-04-29 10:18:58,789 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 10 hr time horizon... +2026-04-29 10:18:58,811 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:00,950 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 6 hr time horizon... +2026-04-29 10:19:00,970 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:01,547 - __main__ - INFO - Finished processing 2018-01-26 05:00:00 15 hr time horizon... +2026-04-29 10:19:01,564 - __main__ - INFO - Finished processing 2018-01-18 05:00:00 15 hr time horizon... +2026-04-29 10:19:01,575 - __main__ - INFO - Processing values: 2018-01-28 10:00:00 15 hr time horizon... +2026-04-29 10:19:01,590 - __main__ - INFO - Processing values: 2018-01-13 21:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:01,749 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 7 hr time horizon... +2026-04-29 10:19:01,770 - __main__ - INFO - Processing values: 2018-01-18 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:02,843 - __main__ - INFO - Finished processing 2018-01-03 00:00:00 7 hr time horizon... +2026-04-29 10:19:02,871 - __main__ - INFO - Processing values: 2018-01-08 20:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:03,878 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 11 hr time horizon... +2026-04-29 10:19:03,902 - __main__ - INFO - Processing values: 2018-01-24 06:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:04,269 - __main__ - INFO - Finished processing 2018-01-25 04:00:00 13 hr time horizon... +2026-04-29 10:19:04,291 - __main__ - INFO - Processing values: 2018-01-13 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:05,953 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:05,973 - __main__ - INFO - Processing values: 2018-01-27 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:07,020 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 2 hr time horizon... +2026-04-29 10:19:07,039 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:08,056 - __main__ - INFO - Finished processing 2018-01-23 15:00:00 14 hr time horizon... +2026-04-29 10:19:08,080 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:08,946 - __main__ - INFO - Finished processing 2018-01-21 20:00:00 11 hr time horizon... +2026-04-29 10:19:08,967 - __main__ - INFO - Processing values: 2018-01-18 01:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:10,204 - __main__ - INFO - Finished processing 2018-01-08 21:00:00 3 hr time horizon... +2026-04-29 10:19:10,236 - __main__ - INFO - Processing values: 2018-01-12 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:12,559 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 12 hr time horizon... +2026-04-29 10:19:12,582 - __main__ - INFO - Processing values: 2018-01-28 03:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:12,826 - __main__ - INFO - Finished processing 2018-01-16 21:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:12,853 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:13,358 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 11 hr time horizon... +2026-04-29 10:19:13,383 - __main__ - INFO - Processing values: 2018-01-09 20:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:13,475 - __main__ - INFO - Finished processing 2018-01-04 13:00:00 17 hr time horizon... +2026-04-29 10:19:13,501 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:13,511 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 10 hr time horizon... +2026-04-29 10:19:13,531 - __main__ - INFO - Processing values: 2018-01-12 22:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:14,516 - __main__ - INFO - Finished processing 2018-01-22 01:00:00 8 hr time horizon... +2026-04-29 10:19:14,539 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:14,914 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 14 hr time horizon... +2026-04-29 10:19:14,938 - __main__ - INFO - Processing values: 2018-01-12 16:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:15,492 - __main__ - INFO - Finished processing 2018-01-13 21:00:00 3 hr time horizon... +2026-04-29 10:19:15,510 - __main__ - INFO - Processing values: 2018-01-02 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:15,769 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 7 hr time horizon... +2026-04-29 10:19:15,788 - __main__ - INFO - Processing values: 2018-01-03 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:16,807 - __main__ - INFO - Finished processing 2018-01-28 10:00:00 15 hr time horizon... +2026-04-29 10:19:16,829 - __main__ - INFO - Processing values: 2018-01-13 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:19:17,426 - __main__ - INFO - Finished processing 2018-01-18 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:17,455 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:18,811 - __main__ - INFO - Finished processing 2018-01-08 20:00:00 10 hr time horizon... +2026-04-29 10:19:18,835 - __main__ - INFO - Processing values: 2018-01-17 08:00:00 10 hr time horizon... +2026-04-29 10:19:19,014 - __main__ - INFO - Finished processing 2018-01-24 06:00:00 10 hr time horizon... +2026-04-29 10:19:19,035 - __main__ - INFO - Processing values: 2018-01-22 05:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:19,234 - __main__ - INFO - Finished processing 2018-01-13 19:00:00 13 hr time horizon... +2026-04-29 10:19:19,255 - __main__ - INFO - Processing values: 2018-01-11 21:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:21,301 - __main__ - INFO - Finished processing 2018-01-27 07:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:21,323 - __main__ - INFO - Processing values: 2018-01-27 16:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:22,017 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:22,038 - __main__ - INFO - Processing values: 2018-01-25 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:23,476 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 18 hr time horizon... +2026-04-29 10:19:23,498 - __main__ - INFO - Processing values: 2018-01-08 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:24,156 - __main__ - INFO - Finished processing 2018-01-18 01:00:00 4 hr time horizon... +2026-04-29 10:19:24,178 - __main__ - INFO - Processing values: 2018-01-11 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:25,727 - __main__ - INFO - Finished processing 2018-01-12 03:00:00 10 hr time horizon... +2026-04-29 10:19:25,749 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:27,400 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 3 hr time horizon... +2026-04-29 10:19:27,421 - __main__ - INFO - Processing values: 2018-01-05 20:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:27,502 - __main__ - INFO - Finished processing 2018-01-12 22:00:00 5 hr time horizon... +2026-04-29 10:19:27,529 - __main__ - INFO - Processing values: 2018-01-27 13:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:27,641 - __main__ - INFO - Finished processing 2018-01-09 20:00:00 7 hr time horizon... +2026-04-29 10:19:27,665 - __main__ - INFO - Processing values: 2018-01-21 00:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:27,836 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 16 hr time horizon... +2026-04-29 10:19:27,858 - __main__ - INFO - Processing values: 2018-01-22 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:29,510 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:29,535 - __main__ - INFO - Processing values: 2018-01-08 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:19:29,847 - __main__ - INFO - Finished processing 2018-01-03 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:29,869 - __main__ - INFO - Processing values: 2018-01-04 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:30,019 - __main__ - INFO - Finished processing 2018-01-28 03:00:00 11 hr time horizon... +2026-04-29 10:19:30,041 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 14 hr time horizon... +2026-04-29 10:19:30,167 - __main__ - INFO - Finished processing 2018-01-12 16:00:00 6 hr time horizon... +2026-04-29 10:19:30,188 - __main__ - INFO - Processing values: 2018-01-12 01:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:30,253 - __main__ - INFO - Finished processing 2018-01-13 22:00:00 7 hr time horizon... +2026-04-29 10:19:30,271 - __main__ - INFO - Processing values: 2018-01-01 20:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:30,834 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 1 hr time horizon... +2026-04-29 10:19:30,857 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:19:31,215 - __main__ - INFO - Finished processing 2018-01-02 11:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:31,240 - __main__ - INFO - Processing values: 2018-01-05 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:33,276 - __main__ - INFO - Finished processing 2018-01-17 08:00:00 10 hr time horizon... +2026-04-29 10:19:33,302 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:33,428 - __main__ - INFO - Finished processing 2018-01-22 05:00:00 6 hr time horizon... +2026-04-29 10:19:33,453 - __main__ - INFO - Processing values: 2018-01-24 19:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:33,869 - __main__ - INFO - Finished processing 2018-01-11 21:00:00 7 hr time horizon... +2026-04-29 10:19:33,891 - __main__ - INFO - Processing values: 2018-01-17 15:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:36,034 - __main__ - INFO - Finished processing 2018-01-27 16:00:00 18 hr time horizon... +2026-04-29 10:19:36,057 - __main__ - INFO - Processing values: 2018-01-30 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:36,383 - __main__ - INFO - Finished processing 2018-01-25 18:00:00 14 hr time horizon... +2026-04-29 10:19:36,404 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:38,816 - __main__ - INFO - Finished processing 2018-01-08 10:00:00 18 hr time horizon... +2026-04-29 10:19:38,841 - __main__ - INFO - Processing values: 2018-01-07 11:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:39,263 - __main__ - INFO - Finished processing 2018-01-11 14:00:00 5 hr time horizon... +2026-04-29 10:19:39,289 - __main__ - INFO - Processing values: 2018-01-23 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:40,525 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 11 hr time horizon... +2026-04-29 10:19:40,554 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:41,908 - __main__ - INFO - Finished processing 2018-01-21 00:00:00 18 hr time horizon... +2026-04-29 10:19:41,932 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:42,037 - __main__ - INFO - Finished processing 2018-01-05 20:00:00 18 hr time horizon... +2026-04-29 10:19:42,063 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:44,444 - __main__ - INFO - Finished processing 2018-01-04 11:00:00 16 hr time horizon... +2026-04-29 10:19:44,470 - __main__ - INFO - Processing values: 2018-01-30 15:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:44,613 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 5 hr time horizon... +2026-04-29 10:19:44,635 - __main__ - INFO - Processing values: 2018-01-22 03:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:44,778 - __main__ - INFO - Finished processing 2018-01-12 01:00:00 12 hr time horizon... +2026-04-29 10:19:44,802 - __main__ - INFO - Processing values: 2018-01-25 22:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:44,926 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 14 hr time horizon... +2026-04-29 10:19:44,946 - __main__ - INFO - Processing values: 2018-01-13 10:00:00 8 hr time horizon... +2026-04-29 10:19:44,959 - __main__ - INFO - Finished processing 2018-01-01 20:00:00 14 hr time horizon... +2026-04-29 10:19:44,980 - __main__ - INFO - Processing values: 2018-01-17 13:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:45,424 - __main__ - INFO - Finished processing 2018-01-05 01:00:00 9 hr time horizon... +2026-04-29 10:19:45,443 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:45,947 - __main__ - INFO - Finished processing 2018-01-08 06:00:00 15 hr time horizon... +2026-04-29 10:19:45,977 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:46,303 - __main__ - INFO - Finished processing 2018-01-27 13:00:00 13 hr time horizon... +2026-04-29 10:19:46,327 - __main__ - INFO - Processing values: 2018-01-09 05:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:48,345 - __main__ - INFO - Finished processing 2018-01-24 19:00:00 1 hr time horizon... +2026-04-29 10:19:48,366 - __main__ - INFO - Processing values: 2018-01-05 19:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:49,109 - __main__ - INFO - Finished processing 2018-01-17 15:00:00 14 hr time horizon... +2026-04-29 10:19:49,130 - __main__ - INFO - Processing values: 2018-01-21 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:50,222 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 15 hr time horizon... +2026-04-29 10:19:50,247 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:53,755 - __main__ - INFO - Finished processing 2018-01-07 11:00:00 16 hr time horizon... +2026-04-29 10:19:53,786 - __main__ - INFO - Processing values: 2018-01-30 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:53,941 - __main__ - INFO - Finished processing 2018-01-30 09:00:00 1 hr time horizon... +2026-04-29 10:19:53,962 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:54,076 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 1 hr time horizon... +2026-04-29 10:19:54,094 - __main__ - INFO - Processing values: 2018-01-15 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:55,074 - __main__ - INFO - Finished processing 2018-01-23 02:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:55,101 - __main__ - INFO - Processing values: 2018-01-28 23:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:55,608 - __main__ - INFO - Finished processing 2018-01-22 09:00:00 8 hr time horizon... +2026-04-29 10:19:55,630 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,038 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,061 - __main__ - INFO - Processing values: 2018-01-27 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,108 - __main__ - INFO - Finished processing 2018-01-19 01:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,131 - __main__ - INFO - Processing values: 2018-01-06 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,365 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:57,388 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:59,318 - __main__ - INFO - Finished processing 2018-01-25 22:00:00 16 hr time horizon... +2026-04-29 10:19:59,345 - __main__ - INFO - Processing values: 2018-01-03 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:59,474 - __main__ - INFO - Finished processing 2018-01-30 15:00:00 4 hr time horizon... +2026-04-29 10:19:59,481 - __main__ - INFO - Finished processing 2018-01-17 13:00:00 1 hr time horizon... +2026-04-29 10:19:59,500 - __main__ - INFO - Processing values: 2018-01-29 03:00:00 8 hr time horizon... +2026-04-29 10:19:59,504 - __main__ - INFO - Processing values: 2018-01-06 19:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:19:59,588 - __main__ - INFO - Finished processing 2018-01-22 03:00:00 6 hr time horizon... +2026-04-29 10:19:59,611 - __main__ - INFO - Processing values: 2018-01-24 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:00,062 - __main__ - INFO - Finished processing 2018-01-13 10:00:00 8 hr time horizon... +2026-04-29 10:20:00,080 - __main__ - INFO - Processing values: 2018-01-07 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:00,800 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 14 hr time horizon... +2026-04-29 10:20:00,827 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:01,430 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 1 hr time horizon... +2026-04-29 10:20:01,452 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 18 hr time horizon... +2026-04-29 10:20:01,651 - __main__ - INFO - Finished processing 2018-01-09 05:00:00 2 hr time horizon... +2026-04-29 10:20:01,678 - __main__ - INFO - Processing values: 2018-01-02 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:03,113 - __main__ - INFO - Finished processing 2018-01-05 19:00:00 12 hr time horizon... +2026-04-29 10:20:03,135 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:05,777 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 12 hr time horizon... +2026-04-29 10:20:05,800 - __main__ - INFO - Processing values: 2018-01-13 07:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:06,267 - __main__ - INFO - Finished processing 2018-01-21 11:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:06,292 - __main__ - INFO - Processing values: 2018-01-28 16:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:09,103 - __main__ - INFO - Finished processing 2018-01-30 22:00:00 12 hr time horizon... +2026-04-29 10:20:09,125 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:09,349 - __main__ - INFO - Finished processing 2018-01-15 03:00:00 2 hr time horizon... +2026-04-29 10:20:09,369 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 18 hr time horizon... +2026-04-29 10:20:09,405 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:09,429 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:10,327 - __main__ - INFO - Finished processing 2018-01-28 23:00:00 6 hr time horizon... +2026-04-29 10:20:10,348 - __main__ - INFO - Processing values: 2018-01-23 00:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:11,227 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 17 hr time horizon... +2026-04-29 10:20:11,252 - __main__ - INFO - Processing values: 2018-01-25 22:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:12,131 - __main__ - INFO - Finished processing 2018-01-06 04:00:00 6 hr time horizon... +2026-04-29 10:20:12,155 - __main__ - INFO - Processing values: 2018-01-13 04:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:13,092 - __main__ - INFO - Finished processing 2018-01-27 17:00:00 14 hr time horizon... +2026-04-29 10:20:13,121 - __main__ - INFO - Processing values: 2018-01-07 00:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:13,650 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:13,676 - __main__ - INFO - Processing values: 2018-01-08 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:13,975 - __main__ - INFO - Finished processing 2018-01-24 09:00:00 1 hr time horizon... +2026-04-29 10:20:14,001 - __main__ - INFO - Processing values: 2018-01-06 00:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:15,119 - __main__ - INFO - Finished processing 2018-01-06 19:00:00 13 hr time horizon... +2026-04-29 10:20:15,151 - __main__ - INFO - Processing values: 2018-01-01 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:15,818 - __main__ - INFO - Finished processing 2018-01-03 14:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:15,841 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:16,429 - __main__ - INFO - Finished processing 2018-01-07 21:00:00 12 hr time horizon... +2026-04-29 10:20:16,457 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:16,595 - __main__ - INFO - Finished processing 2018-01-15 04:00:00 10 hr time horizon... +2026-04-29 10:20:16,618 - __main__ - INFO - Processing values: 2018-01-18 04:00:00 6 hr time horizon... +2026-04-29 10:20:16,835 - __main__ - INFO - Finished processing 2018-01-02 17:00:00 5 hr time horizon... +2026-04-29 10:20:16,866 - __main__ - INFO - Processing values: 2018-01-08 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:16,989 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 18 hr time horizon... +2026-04-29 10:20:17,013 - __main__ - INFO - Processing values: 2018-01-19 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:17,915 - __main__ - INFO - Finished processing 2018-01-29 03:00:00 8 hr time horizon... +2026-04-29 10:20:17,939 - __main__ - INFO - Processing values: 2018-01-24 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:18,631 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 8 hr time horizon... +2026-04-29 10:20:18,653 - __main__ - INFO - Processing values: 2018-01-26 12:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:21,568 - __main__ - INFO - Finished processing 2018-01-28 16:00:00 1 hr time horizon... +2026-04-29 10:20:21,589 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:21,823 - __main__ - INFO - Finished processing 2018-01-13 07:00:00 8 hr time horizon... +2026-04-29 10:20:21,847 - __main__ - INFO - Processing values: 2018-01-15 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:23,972 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 18 hr time horizon... +2026-04-29 10:20:23,993 - __main__ - INFO - Processing values: 2018-01-02 22:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:24,722 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 5 hr time horizon... +2026-04-29 10:20:24,744 - __main__ - INFO - Processing values: 2018-01-06 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:24,974 - __main__ - INFO - Finished processing 2018-01-25 22:00:00 4 hr time horizon... +2026-04-29 10:20:24,992 - __main__ - INFO - Processing values: 2018-01-15 18:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:25,310 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 13 hr time horizon... +2026-04-29 10:20:25,338 - __main__ - INFO - Processing values: 2018-01-11 04:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:26,272 - __main__ - INFO - Finished processing 2018-01-23 00:00:00 8 hr time horizon... +2026-04-29 10:20:26,295 - __main__ - INFO - Processing values: 2018-01-01 11:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:27,443 - __main__ - INFO - Finished processing 2018-01-13 04:00:00 18 hr time horizon... +2026-04-29 10:20:27,473 - __main__ - INFO - Processing values: 2018-01-03 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:28,526 - __main__ - INFO - Finished processing 2018-01-07 00:00:00 11 hr time horizon... +2026-04-29 10:20:28,554 - __main__ - INFO - Processing values: 2018-01-06 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:29,202 - __main__ - INFO - Finished processing 2018-01-06 00:00:00 3 hr time horizon... +2026-04-29 10:20:29,221 - __main__ - INFO - Processing values: 2018-01-14 07:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:29,511 - __main__ - INFO - Finished processing 2018-01-08 19:00:00 14 hr time horizon... +2026-04-29 10:20:29,535 - __main__ - INFO - Processing values: 2018-01-09 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:30,208 - __main__ - INFO - Finished processing 2018-01-01 09:00:00 15 hr time horizon... +2026-04-29 10:20:30,235 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:30,801 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 7 hr time horizon... +2026-04-29 10:20:30,823 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:31,785 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 2 hr time horizon... +2026-04-29 10:20:31,808 - __main__ - INFO - Processing values: 2018-01-18 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:32,133 - __main__ - INFO - Finished processing 2018-01-19 10:00:00 2 hr time horizon... +2026-04-29 10:20:32,154 - __main__ - INFO - Processing values: 2018-01-25 16:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:32,317 - __main__ - INFO - Finished processing 2018-01-08 07:00:00 4 hr time horizon... +2026-04-29 10:20:32,346 - __main__ - INFO - Processing values: 2018-01-01 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:33,518 - __main__ - INFO - Finished processing 2018-01-18 04:00:00 6 hr time horizon... +2026-04-29 10:20:33,547 - __main__ - INFO - Processing values: 2018-01-25 05:00:00 16 hr time horizon... +2026-04-29 10:20:33,655 - __main__ - INFO - Finished processing 2018-01-24 14:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:33,676 - __main__ - INFO - Processing values: 2018-01-26 11:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:34,302 - __main__ - INFO - Finished processing 2018-01-26 12:00:00 4 hr time horizon... +2026-04-29 10:20:34,324 - __main__ - INFO - Processing values: 2018-01-25 19:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:36,619 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 1 hr time horizon... +2026-04-29 10:20:36,643 - __main__ - INFO - Processing values: 2018-01-19 00:00:00 13 hr time horizon... +2026-04-29 10:20:36,819 - __main__ - INFO - Finished processing 2018-01-15 22:00:00 15 hr time horizon... +2026-04-29 10:20:36,842 - __main__ - INFO - Processing values: 2018-01-07 14:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:39,267 - __main__ - INFO - Finished processing 2018-01-02 22:00:00 15 hr time horizon... +2026-04-29 10:20:39,292 - __main__ - INFO - Processing values: 2018-01-02 13:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:40,657 - __main__ - INFO - Finished processing 2018-01-15 18:00:00 4 hr time horizon... +2026-04-29 10:20:40,682 - __main__ - INFO - Processing values: 2018-01-21 11:00:00 15 hr time horizon... +2026-04-29 10:20:40,689 - __main__ - INFO - Finished processing 2018-01-06 01:00:00 15 hr time horizon... +2026-04-29 10:20:40,711 - __main__ - INFO - Processing values: 2018-01-17 16:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:40,868 - __main__ - INFO - Finished processing 2018-01-11 04:00:00 7 hr time horizon... +2026-04-29 10:20:40,892 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:41,976 - __main__ - INFO - Finished processing 2018-01-01 11:00:00 15 hr time horizon... +2026-04-29 10:20:42,003 - __main__ - INFO - Processing values: 2018-01-10 10:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:42,248 - __main__ - INFO - Finished processing 2018-01-03 08:00:00 1 hr time horizon... +2026-04-29 10:20:42,268 - __main__ - INFO - Processing values: 2018-01-20 02:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:43,754 - __main__ - INFO - Finished processing 2018-01-06 14:00:00 17 hr time horizon... +2026-04-29 10:20:43,784 - __main__ - INFO - Processing values: 2018-01-06 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:44,791 - __main__ - INFO - Finished processing 2018-01-14 07:00:00 13 hr time horizon... +2026-04-29 10:20:44,810 - __main__ - INFO - Processing values: 2018-01-08 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:45,266 - __main__ - INFO - Finished processing 2018-01-09 18:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:45,290 - __main__ - INFO - Processing values: 2018-01-02 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:46,643 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 11 hr time horizon... +2026-04-29 10:20:46,667 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:46,855 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 9 hr time horizon... +2026-04-29 10:20:46,883 - __main__ - INFO - Processing values: 2018-01-03 04:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:47,011 - __main__ - INFO - Finished processing 2018-01-01 10:00:00 8 hr time horizon... +2026-04-29 10:20:47,032 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:47,169 - __main__ - INFO - Finished processing 2018-01-18 00:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:47,203 - __main__ - INFO - Processing values: 2018-01-09 04:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:47,834 - __main__ - INFO - Finished processing 2018-01-25 16:00:00 4 hr time horizon... +2026-04-29 10:20:47,859 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:49,687 - __main__ - INFO - Finished processing 2018-01-25 05:00:00 16 hr time horizon... +2026-04-29 10:20:49,710 - __main__ - INFO - Processing values: 2018-01-27 18:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:49,868 - __main__ - INFO - Finished processing 2018-01-25 19:00:00 15 hr time horizon... +2026-04-29 10:20:49,893 - __main__ - INFO - Processing values: 2018-01-14 18:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:50,193 - __main__ - INFO - Finished processing 2018-01-26 11:00:00 4 hr time horizon... +2026-04-29 10:20:50,211 - __main__ - INFO - Processing values: 2018-01-27 12:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:52,827 - __main__ - INFO - Finished processing 2018-01-19 00:00:00 13 hr time horizon... +2026-04-29 10:20:52,860 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:52,920 - __main__ - INFO - Finished processing 2018-01-07 14:00:00 2 hr time horizon... +2026-04-29 10:20:52,950 - __main__ - INFO - Processing values: 2018-01-21 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:54,489 - __main__ - INFO - Finished processing 2018-01-02 13:00:00 3 hr time horizon... +2026-04-29 10:20:54,513 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:55,932 - __main__ - INFO - Finished processing 2018-01-17 16:00:00 15 hr time horizon... +2026-04-29 10:20:55,953 - __main__ - INFO - Processing values: 2018-01-25 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:56,073 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 6 hr time horizon... +2026-04-29 10:20:56,095 - __main__ - INFO - Processing values: 2018-01-12 23:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:56,285 - __main__ - INFO - Finished processing 2018-01-21 11:00:00 15 hr time horizon... +2026-04-29 10:20:56,307 - __main__ - INFO - Processing values: 2018-01-24 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:58,180 - __main__ - INFO - Finished processing 2018-01-20 02:00:00 14 hr time horizon... +2026-04-29 10:20:58,203 - __main__ - INFO - Processing values: 2018-01-27 01:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:58,672 - __main__ - INFO - Finished processing 2018-01-06 13:00:00 16 hr time horizon... +2026-04-29 10:20:58,701 - __main__ - INFO - Processing values: 2018-01-05 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:59,238 - __main__ - INFO - Finished processing 2018-01-10 10:00:00 12 hr time horizon... +2026-04-29 10:20:59,262 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:59,824 - __main__ - INFO - Finished processing 2018-01-08 09:00:00 2 hr time horizon... +2026-04-29 10:20:59,846 - __main__ - INFO - Processing values: 2018-01-12 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:59,970 - __main__ - INFO - Finished processing 2018-01-02 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:20:59,993 - __main__ - INFO - Processing values: 2018-01-08 12:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:01,464 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 1 hr time horizon... +2026-04-29 10:21:01,483 - __main__ - INFO - Processing values: 2018-01-30 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:02,261 - __main__ - INFO - Finished processing 2018-01-03 04:00:00 6 hr time horizon... +2026-04-29 10:21:02,282 - __main__ - INFO - Processing values: 2018-01-24 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:02,398 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 10 hr time horizon... +2026-04-29 10:21:02,418 - __main__ - INFO - Processing values: 2018-01-29 16:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:02,614 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 12 hr time horizon... +2026-04-29 10:21:02,638 - __main__ - INFO - Processing values: 2018-01-20 19:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:03,200 - __main__ - INFO - Finished processing 2018-01-09 04:00:00 13 hr time horizon... +2026-04-29 10:21:03,227 - __main__ - INFO - Processing values: 2018-01-17 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:03,778 - __main__ - INFO - Finished processing 2018-01-14 18:00:00 2 hr time horizon... +2026-04-29 10:21:03,800 - __main__ - INFO - Processing values: 2018-01-12 17:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:05,299 - __main__ - INFO - Finished processing 2018-01-27 18:00:00 13 hr time horizon... +2026-04-29 10:21:05,321 - __main__ - INFO - Processing values: 2018-01-15 10:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:06,109 - __main__ - INFO - Finished processing 2018-01-27 12:00:00 7 hr time horizon... +2026-04-29 10:21:06,134 - __main__ - INFO - Processing values: 2018-01-27 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:08,177 - __main__ - INFO - Finished processing 2018-01-21 13:00:00 4 hr time horizon... +2026-04-29 10:21:08,202 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:08,675 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:08,700 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:10,122 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 17 hr time horizon... +2026-04-29 10:21:10,152 - __main__ - INFO - Processing values: 2018-01-02 01:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:11,023 - __main__ - INFO - Finished processing 2018-01-12 23:00:00 16 hr time horizon... +2026-04-29 10:21:11,048 - __main__ - INFO - Processing values: 2018-01-11 16:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:11,269 - __main__ - INFO - Finished processing 2018-01-25 23:00:00 13 hr time horizon... +2026-04-29 10:21:11,292 - __main__ - INFO - Processing values: 2018-01-04 15:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:11,863 - __main__ - INFO - Finished processing 2018-01-24 00:00:00 17 hr time horizon... +2026-04-29 10:21:11,887 - __main__ - INFO - Processing values: 2018-01-10 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:13,726 - __main__ - INFO - Finished processing 2018-01-05 05:00:00 5 hr time horizon... +2026-04-29 10:21:13,749 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:14,157 - __main__ - INFO - Finished processing 2018-01-27 01:00:00 13 hr time horizon... +2026-04-29 10:21:14,181 - __main__ - INFO - Processing values: 2018-01-30 17:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:14,774 - __main__ - INFO - Finished processing 2018-01-12 13:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:14,799 - __main__ - INFO - Processing values: 2018-01-26 22:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:15,312 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:15,339 - __main__ - INFO - Processing values: 2018-01-15 00:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:17,439 - __main__ - INFO - Finished processing 2018-01-30 02:00:00 13 hr time horizon... +2026-04-29 10:21:17,461 - __main__ - INFO - Processing values: 2018-01-06 21:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:17,645 - __main__ - INFO - Finished processing 2018-01-29 16:00:00 14 hr time horizon... +2026-04-29 10:21:17,671 - __main__ - INFO - Processing values: 2018-01-18 12:00:00 14 hr time horizon... +2026-04-29 10:21:17,734 - __main__ - INFO - Finished processing 2018-01-24 13:00:00 16 hr time horizon... +2026-04-29 10:21:17,754 - __main__ - INFO - Processing values: 2018-01-24 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:18,050 - __main__ - INFO - Finished processing 2018-01-20 19:00:00 14 hr time horizon... +2026-04-29 10:21:18,073 - __main__ - INFO - Processing values: 2018-01-07 10:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:18,622 - __main__ - INFO - Finished processing 2018-01-08 12:00:00 9 hr time horizon... +2026-04-29 10:21:18,648 - __main__ - INFO - Processing values: 2018-01-14 13:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:18,798 - __main__ - INFO - Finished processing 2018-01-17 06:00:00 4 hr time horizon... +2026-04-29 10:21:18,820 - __main__ - INFO - Processing values: 2018-01-11 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:19,122 - __main__ - INFO - Finished processing 2018-01-12 17:00:00 17 hr time horizon... +2026-04-29 10:21:19,143 - __main__ - INFO - Processing values: 2018-01-01 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:21,374 - __main__ - INFO - Finished processing 2018-01-15 10:00:00 8 hr time horizon... +2026-04-29 10:21:21,397 - __main__ - INFO - Processing values: 2018-01-07 06:00:00 12 hr time horizon... +2026-04-29 10:21:21,414 - __main__ - INFO - Finished processing 2018-01-27 15:00:00 7 hr time horizon... +2026-04-29 10:21:21,440 - __main__ - INFO - Processing values: 2018-01-13 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:23,860 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:23,880 - __main__ - INFO - Processing values: 2018-01-07 19:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:24,601 - __main__ - INFO - Finished processing 2018-01-10 02:00:00 15 hr time horizon... +2026-04-29 10:21:24,626 - __main__ - INFO - Processing values: 2018-01-10 21:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:25,666 - __main__ - INFO - Finished processing 2018-01-02 01:00:00 9 hr time horizon... +2026-04-29 10:21:25,689 - __main__ - INFO - Processing values: 2018-01-22 20:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:26,560 - __main__ - INFO - Finished processing 2018-01-04 15:00:00 7 hr time horizon... +2026-04-29 10:21:26,580 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:27,125 - __main__ - INFO - Finished processing 2018-01-11 16:00:00 12 hr time horizon... +2026-04-29 10:21:27,147 - __main__ - INFO - Processing values: 2018-01-07 03:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:28,500 - __main__ - INFO - Finished processing 2018-01-10 03:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:21:28,525 - __main__ - INFO - Processing values: 2018-01-11 01:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:29,519 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 3 hr time horizon... +2026-04-29 10:21:29,542 - __main__ - INFO - Processing values: 2018-01-21 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:29,685 - __main__ - INFO - Finished processing 2018-01-30 17:00:00 12 hr time horizon... +2026-04-29 10:21:29,707 - __main__ - INFO - Processing values: 2018-01-15 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:29,943 - __main__ - INFO - Finished processing 2018-01-26 22:00:00 11 hr time horizon... +2026-04-29 10:21:29,961 - __main__ - INFO - Processing values: 2018-01-24 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:30,242 - __main__ - INFO - Finished processing 2018-01-15 00:00:00 17 hr time horizon... +2026-04-29 10:21:30,268 - __main__ - INFO - Processing values: 2018-01-06 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:31,891 - __main__ - INFO - Finished processing 2018-01-24 01:00:00 6 hr time horizon... +2026-04-29 10:21:31,911 - __main__ - INFO - Processing values: 2018-01-21 09:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:32,021 - __main__ - INFO - Finished processing 2018-01-06 21:00:00 8 hr time horizon... +2026-04-29 10:21:32,042 - __main__ - INFO - Processing values: 2018-01-02 14:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:33,400 - __main__ - INFO - Finished processing 2018-01-18 12:00:00 14 hr time horizon... +2026-04-29 10:21:33,420 - __main__ - INFO - Processing values: 2018-01-03 18:00:00 13 hr time horizon... +2026-04-29 10:21:33,433 - __main__ - INFO - Finished processing 2018-01-14 13:00:00 4 hr time horizon... +2026-04-29 10:21:33,454 - __main__ - INFO - Processing values: 2018-01-14 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:33,568 - __main__ - INFO - Finished processing 2018-01-01 21:00:00 12 hr time horizon... +2026-04-29 10:21:33,591 - __main__ - INFO - Processing values: 2018-01-03 15:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:33,864 - __main__ - INFO - Finished processing 2018-01-11 05:00:00 17 hr time horizon... +2026-04-29 10:21:33,890 - __main__ - INFO - Processing values: 2018-01-08 17:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:35,998 - __main__ - INFO - Finished processing 2018-01-07 10:00:00 15 hr time horizon... +2026-04-29 10:21:36,021 - __main__ - INFO - Processing values: 2018-01-05 22:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:36,404 - __main__ - INFO - Finished processing 2018-01-07 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:36,428 - __main__ - INFO - Processing values: 2018-01-11 15:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:36,974 - __main__ - INFO - Finished processing 2018-01-13 14:00:00 18 hr time horizon... +2026-04-29 10:21:36,993 - __main__ - INFO - Processing values: 2018-01-26 09:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:38,955 - __main__ - INFO - Finished processing 2018-01-10 21:00:00 14 hr time horizon... +2026-04-29 10:21:38,978 - __main__ - INFO - Processing values: 2018-01-01 18:00:00 8 hr time horizon... +2026-04-29 10:21:39,181 - __main__ - INFO - Finished processing 2018-01-22 20:00:00 13 hr time horizon... +2026-04-29 10:21:39,201 - __main__ - INFO - Processing values: 2018-01-11 20:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:40,622 - __main__ - INFO - Finished processing 2018-01-07 03:00:00 2 hr time horizon... +2026-04-29 10:21:40,643 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:43,113 - __main__ - INFO - Finished processing 2018-01-24 16:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:43,134 - __main__ - INFO - Processing values: 2018-01-19 06:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:43,611 - __main__ - INFO - Finished processing 2018-01-21 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:43,631 - __main__ - INFO - Processing values: 2018-01-29 17:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:43,760 - __main__ - INFO - Finished processing 2018-01-15 09:00:00 3 hr time horizon... +2026-04-29 10:21:43,779 - __main__ - INFO - Processing values: 2018-01-23 07:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:44,402 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 14 hr time horizon... +2026-04-29 10:21:44,423 - __main__ - INFO - Processing values: 2018-01-19 13:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:45,005 - __main__ - INFO - Finished processing 2018-01-06 02:00:00 13 hr time horizon... +2026-04-29 10:21:45,036 - __main__ - INFO - Processing values: 2018-01-26 07:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:46,011 - __main__ - INFO - Finished processing 2018-01-11 01:00:00 15 hr time horizon... +2026-04-29 10:21:46,036 - __main__ - INFO - Processing values: 2018-01-19 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:46,197 - __main__ - INFO - Finished processing 2018-01-02 14:00:00 10 hr time horizon... +2026-04-29 10:21:46,221 - __main__ - INFO - Processing values: 2018-01-20 07:00:00 5 hr time horizon... +2026-04-29 10:21:46,313 - __main__ - INFO - Finished processing 2018-01-21 09:00:00 1 hr time horizon... +2026-04-29 10:21:46,332 - __main__ - INFO - Processing values: 2018-01-18 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:47,351 - __main__ - INFO - Finished processing 2018-01-03 18:00:00 13 hr time horizon... +2026-04-29 10:21:47,372 - __main__ - INFO - Processing values: 2018-01-27 14:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:47,575 - __main__ - INFO - Finished processing 2018-01-03 15:00:00 9 hr time horizon... +2026-04-29 10:21:47,596 - __main__ - INFO - Processing values: 2018-01-10 14:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:48,491 - __main__ - INFO - Finished processing 2018-01-08 17:00:00 8 hr time horizon... +2026-04-29 10:21:48,522 - __main__ - INFO - Processing values: 2018-01-26 17:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:49,364 - __main__ - INFO - Finished processing 2018-01-05 22:00:00 7 hr time horizon... +2026-04-29 10:21:49,387 - __main__ - INFO - Processing values: 2018-01-03 03:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:50,345 - __main__ - INFO - Finished processing 2018-01-11 15:00:00 10 hr time horizon... +2026-04-29 10:21:50,368 - __main__ - INFO - Processing values: 2018-01-28 05:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:50,689 - __main__ - INFO - Finished processing 2018-01-26 09:00:00 7 hr time horizon... +2026-04-29 10:21:50,714 - __main__ - INFO - Processing values: 2018-01-28 21:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:53,118 - __main__ - INFO - Finished processing 2018-01-01 18:00:00 8 hr time horizon... +2026-04-29 10:21:53,137 - __main__ - INFO - Processing values: 2018-01-24 21:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:53,445 - __main__ - INFO - Finished processing 2018-01-07 19:00:00 11 hr time horizon... +2026-04-29 10:21:53,469 - __main__ - INFO - Processing values: 2018-01-30 07:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:55,064 - __main__ - INFO - Finished processing 2018-01-11 20:00:00 3 hr time horizon... +2026-04-29 10:21:55,090 - __main__ - INFO - Processing values: 2018-01-07 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:55,130 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 18 hr time horizon... +2026-04-29 10:21:55,152 - __main__ - INFO - Processing values: 2018-01-24 07:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:57,958 - __main__ - INFO - Finished processing 2018-01-19 06:00:00 8 hr time horizon... +2026-04-29 10:21:57,984 - __main__ - INFO - Processing values: 2018-01-16 19:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:58,266 - __main__ - INFO - Finished processing 2018-01-29 17:00:00 18 hr time horizon... +2026-04-29 10:21:58,287 - __main__ - INFO - Processing values: 2018-01-13 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:58,619 - __main__ - INFO - Finished processing 2018-01-23 07:00:00 17 hr time horizon... +2026-04-29 10:21:58,643 - __main__ - INFO - Processing values: 2018-01-04 08:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:21:59,619 - __main__ - INFO - Finished processing 2018-01-19 13:00:00 15 hr time horizon... +2026-04-29 10:21:59,651 - __main__ - INFO - Processing values: 2018-01-06 09:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:00,113 - __main__ - INFO - Finished processing 2018-01-26 07:00:00 2 hr time horizon... +2026-04-29 10:22:00,134 - __main__ - INFO - Processing values: 2018-01-07 22:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:00,618 - __main__ - INFO - Finished processing 2018-01-19 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:00,640 - __main__ - INFO - Processing values: 2018-01-09 03:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:01,247 - __main__ - INFO - Finished processing 2018-01-20 07:00:00 5 hr time horizon... +2026-04-29 10:22:01,270 - __main__ - INFO - Processing values: 2018-01-17 07:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:01,739 - __main__ - INFO - Finished processing 2018-01-18 17:00:00 14 hr time horizon... +2026-04-29 10:22:01,761 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 4 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +2026-04-29 10:22:01,832 - __main__ - INFO - Finished processing 2018-01-14 05:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:01,861 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:02,320 - __main__ - INFO - Finished processing 2018-01-27 14:00:00 8 hr time horizon... +2026-04-29 10:22:02,341 - __main__ - INFO - Processing values: 2018-01-17 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:03,678 - __main__ - INFO - Finished processing 2018-01-10 14:00:00 18 hr time horizon... +2026-04-29 10:22:03,702 - __main__ - INFO - Processing values: 2018-01-20 03:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:04,045 - __main__ - INFO - Finished processing 2018-01-26 17:00:00 14 hr time horizon... +2026-04-29 10:22:04,068 - __main__ - INFO - Processing values: 2018-01-26 06:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:04,981 - __main__ - INFO - Finished processing 2018-01-03 03:00:00 15 hr time horizon... +2026-04-29 10:22:05,003 - __main__ - INFO - Processing values: 2018-01-23 01:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:05,543 - __main__ - INFO - Finished processing 2018-01-28 05:00:00 18 hr time horizon... +2026-04-29 10:22:05,572 - __main__ - INFO - Processing values: 2018-01-29 07:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:05,796 - __main__ - INFO - Finished processing 2018-01-28 21:00:00 18 hr time horizon... +2026-04-29 10:22:05,821 - __main__ - INFO - Processing values: 2018-01-26 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:07,730 - __main__ - INFO - Finished processing 2018-01-24 21:00:00 12 hr time horizon... +2026-04-29 10:22:07,751 - __main__ - INFO - Processing values: 2018-01-05 13:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:09,115 - __main__ - INFO - Finished processing 2018-01-30 07:00:00 12 hr time horizon... +2026-04-29 10:22:09,137 - __main__ - INFO - Processing values: 2018-01-02 08:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:09,570 - __main__ - INFO - Finished processing 2018-01-24 07:00:00 5 hr time horizon... +2026-04-29 10:22:09,590 - __main__ - INFO - Processing values: 2018-01-24 23:00:00 7 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:10,919 - __main__ - INFO - Finished processing 2018-01-07 09:00:00 15 hr time horizon... +2026-04-29 10:22:10,947 - __main__ - INFO - Processing values: 2018-01-02 03:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:12,411 - __main__ - INFO - Finished processing 2018-01-13 12:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:12,423 - __main__ - INFO - Finished processing 2018-01-16 19:00:00 10 hr time horizon... +2026-04-29 10:22:12,430 - __main__ - INFO - Processing values: 2018-01-04 22:00:00 6 hr time horizon... +2026-04-29 10:22:12,445 - __main__ - INFO - Processing values: 2018-01-30 21:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:13,027 - __main__ - INFO - Finished processing 2018-01-04 08:00:00 4 hr time horizon... +2026-04-29 10:22:13,046 - __main__ - INFO - Processing values: 2018-01-07 15:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:14,257 - __main__ - INFO - Finished processing 2018-01-07 22:00:00 14 hr time horizon... +2026-04-29 10:22:14,282 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:15,574 - __main__ - INFO - Finished processing 2018-01-09 03:00:00 13 hr time horizon... +2026-04-29 10:22:15,597 - __main__ - INFO - Processing values: 2018-01-18 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:16,155 - __main__ - INFO - Finished processing 2018-01-17 07:00:00 4 hr time horizon... +2026-04-29 10:22:16,175 - __main__ - INFO - Processing values: 2018-01-06 05:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:16,352 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 4 hr time horizon... +2026-04-29 10:22:16,369 - __main__ - INFO - Processing values: 2018-01-04 09:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:16,558 - __main__ - INFO - Finished processing 2018-01-06 09:00:00 3 hr time horizon... +2026-04-29 10:22:16,578 - __main__ - INFO - Processing values: 2018-01-13 02:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:17,127 - __main__ - INFO - Finished processing 2018-01-17 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:17,151 - __main__ - INFO - Processing values: 2018-01-25 21:00:00 15 hr time horizon... +2026-04-29 10:22:17,205 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 10 hr time horizon... +2026-04-29 10:22:17,225 - __main__ - INFO - Processing values: 2018-01-20 05:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:19,613 - __main__ - INFO - Finished processing 2018-01-26 06:00:00 16 hr time horizon... +2026-04-29 10:22:19,635 - __main__ - INFO - Processing values: 2018-01-29 18:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:19,698 - __main__ - INFO - Finished processing 2018-01-23 01:00:00 2 hr time horizon... +2026-04-29 10:22:19,716 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:20,167 - __main__ - INFO - Finished processing 2018-01-26 01:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:20,185 - __main__ - INFO - Processing values: 2018-01-07 18:00:00 1 hr time horizon... +2026-04-29 10:22:20,247 - __main__ - INFO - Finished processing 2018-01-29 07:00:00 11 hr time horizon... +2026-04-29 10:22:20,265 - __main__ - INFO - Processing values: 2018-01-18 14:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:20,903 - __main__ - INFO - Finished processing 2018-01-20 03:00:00 16 hr time horizon... +2026-04-29 10:22:20,924 - __main__ - INFO - Processing values: 2018-01-06 06:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:22,075 - __main__ - INFO - Finished processing 2018-01-05 13:00:00 11 hr time horizon... +2026-04-29 10:22:22,096 - __main__ - INFO - Processing values: 2018-01-01 23:00:00 9 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:25,259 - __main__ - INFO - Finished processing 2018-01-24 23:00:00 7 hr time horizon... +2026-04-29 10:22:25,275 - __main__ - INFO - Processing values: 2018-01-23 21:00:00 9 hr time horizon... +2026-04-29 10:22:25,522 - __main__ - INFO - Finished processing 2018-01-04 22:00:00 6 hr time horizon... +2026-04-29 10:22:25,538 - __main__ - INFO - Processing values: 2018-01-26 08:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:32,770 - __main__ - INFO - Finished processing 2018-01-25 21:00:00 15 hr time horizon... +2026-04-29 10:22:32,787 - __main__ - INFO - Processing values: 2018-01-11 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:37,927 - __main__ - INFO - Finished processing 2018-01-23 21:00:00 9 hr time horizon... +2026-04-29 10:22:37,948 - __main__ - INFO - Processing values: 2018-01-27 05:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:38,392 - __main__ - INFO - Finished processing 2018-01-26 08:00:00 13 hr time horizon... +2026-04-29 10:22:38,412 - __main__ - INFO - Processing values: 2018-01-14 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:38,749 - __main__ - INFO - Finished processing 2018-01-29 10:00:00 2 hr time horizon... +2026-04-29 10:22:38,765 - __main__ - INFO - Processing values: 2018-01-23 14:00:00 3 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:39,832 - __main__ - INFO - Finished processing 2018-01-29 18:00:00 11 hr time horizon... +2026-04-29 10:22:39,850 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:47,096 - __main__ - INFO - Finished processing 2018-01-30 21:00:00 10 hr time horizon... +2026-04-29 10:22:47,113 - __main__ - INFO - Processing values: 2018-01-08 01:00:00 17 hr time horizon... +2026-04-29 10:22:47,338 - __main__ - INFO - Finished processing 2018-01-11 19:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:47,360 - __main__ - INFO - Processing values: 2018-01-16 17:00:00 18 hr time horizon... +2026-04-29 10:22:47,645 - __main__ - INFO - Finished processing 2018-01-13 02:00:00 11 hr time horizon... +2026-04-29 10:22:47,671 - __main__ - INFO - Processing values: 2018-01-15 19:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:49,971 - __main__ - INFO - Finished processing 2018-01-02 08:00:00 10 hr time horizon... +2026-04-29 10:22:49,988 - __main__ - INFO - Processing values: 2018-01-20 04:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:51,109 - __main__ - INFO - Finished processing 2018-01-27 05:00:00 11 hr time horizon... +2026-04-29 10:22:51,129 - __main__ - INFO - Processing values: 2018-01-19 22:00:00 2 hr time horizon... +2026-04-29 10:22:51,133 - __main__ - INFO - Finished processing 2018-01-18 20:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:51,155 - __main__ - INFO - Processing values: 2018-01-27 08:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:52,306 - __main__ - INFO - Finished processing 2018-01-14 06:00:00 5 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:52,324 - __main__ - INFO - Processing values: 2018-01-07 04:00:00 1 hr time horizon... +2026-04-29 10:22:52,404 - __main__ - INFO - Finished processing 2018-01-23 14:00:00 3 hr time horizon... +2026-04-29 10:22:52,422 - __main__ - INFO - Processing values: 2018-01-19 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:22:53,195 - __main__ - INFO - Finished processing 2018-01-23 08:00:00 17 hr time horizon... +2026-04-29 10:22:53,214 - __main__ - INFO - Processing values: 2018-01-30 18:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:00,456 - __main__ - INFO - Finished processing 2018-01-16 17:00:00 18 hr time horizon... +2026-04-29 10:23:00,473 - __main__ - INFO - Processing values: 2018-01-16 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:01,617 - __main__ - INFO - Finished processing 2018-01-08 01:00:00 17 hr time horizon... +2026-04-29 10:23:01,642 - __main__ - INFO - Processing values: 2018-01-27 20:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:02,188 - __main__ - INFO - Finished processing 2018-01-15 19:00:00 16 hr time horizon... +2026-04-29 10:23:02,205 - __main__ - INFO - Processing values: 2018-01-09 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:02,309 - __main__ - INFO - Finished processing 2018-01-06 06:00:00 12 hr time horizon... +2026-04-29 10:23:02,331 - __main__ - INFO - Processing values: 2018-01-17 05:00:00 12 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:03,917 - __main__ - INFO - Finished processing 2018-01-19 22:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:03,940 - __main__ - INFO - Processing values: 2018-01-14 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:04,443 - __main__ - INFO - Finished processing 2018-01-27 08:00:00 15 hr time horizon... +2026-04-29 10:23:04,465 - __main__ - INFO - Processing values: 2018-01-22 23:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:04,611 - __main__ - INFO - Finished processing 2018-01-20 04:00:00 8 hr time horizon... +2026-04-29 10:23:04,632 - __main__ - INFO - Processing values: 2018-01-25 17:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:05,119 - __main__ - INFO - Finished processing 2018-01-19 03:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:05,141 - __main__ - INFO - Processing values: 2018-01-05 10:00:00 14 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:05,874 - __main__ - INFO - Finished processing 2018-01-30 18:00:00 1 hr time horizon... +2026-04-29 10:23:05,891 - __main__ - INFO - Processing values: 2018-01-04 10:00:00 17 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:07,071 - __main__ - INFO - Finished processing 2018-01-07 04:00:00 1 hr time horizon... +2026-04-29 10:23:07,091 - __main__ - INFO - Processing values: 2018-01-26 23:00:00 18 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:13,184 - __main__ - INFO - Finished processing 2018-01-16 02:00:00 13 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:13,203 - __main__ - INFO - Processing values: 2018-01-17 09:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:15,300 - __main__ - INFO - Finished processing 2018-01-17 05:00:00 12 hr time horizon... +2026-04-29 10:23:15,319 - __main__ - INFO - Processing values: 2018-01-14 21:00:00 15 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:16,025 - __main__ - INFO - Finished processing 2018-01-09 09:00:00 8 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:16,049 - __main__ - INFO - Processing values: 2018-01-17 09:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:16,646 - __main__ - INFO - Finished processing 2018-01-14 23:00:00 13 hr time horizon... +2026-04-29 10:23:16,665 - __main__ - INFO - Processing values: 2018-01-15 04:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:17,395 - __main__ - INFO - Finished processing 2018-01-25 17:00:00 13 hr time horizon... +2026-04-29 10:23:17,420 - __main__ - INFO - Processing values: 2018-01-19 01:00:00 11 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:17,460 - __main__ - INFO - Finished processing 2018-01-27 20:00:00 16 hr time horizon... +2026-04-29 10:23:17,479 - __main__ - INFO - Processing values: 2018-01-29 10:00:00 6 hr time horizon... +2026-04-29 10:23:17,509 - __main__ - INFO - Finished processing 2018-01-22 23:00:00 13 hr time horizon... +2026-04-29 10:23:17,528 - __main__ - INFO - Processing values: 2018-01-29 01:00:00 6 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:18,282 - __main__ - INFO - Finished processing 2018-01-04 10:00:00 17 hr time horizon... +2026-04-29 10:23:18,303 - __main__ - INFO - Processing values: 2018-01-23 08:00:00 10 hr time horizon... +2026-04-29 10:23:18,343 - __main__ - INFO - Finished processing 2018-01-05 10:00:00 14 hr time horizon... +2026-04-29 10:23:18,364 - __main__ - INFO - Processing values: 2018-01-27 21:00:00 2 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:20,599 - __main__ - INFO - Finished processing 2018-01-26 23:00:00 18 hr time horizon... +2026-04-29 10:23:20,628 - __main__ - INFO - Processing values: 2018-01-28 13:00:00 16 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "u". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:23,551 - __main__ - INFO - Finished processing 2018-01-02 03:00:00 8 hr time horizon... +2026-04-29 10:23:23,572 - __main__ - INFO - Processing values: 2018-01-10 08:00:00 1 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "v". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "r2". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "sp". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "t". + ds = ds.metpy.assign_y_x() +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "d2m". + ds = ds.metpy.assign_y_x() +2026-04-29 10:23:25,092 - __main__ - INFO - Finished processing 2018-01-18 14:00:00 13 hr time horizon... +2026-04-29 10:23:25,111 - __main__ - INFO - Processing values: 2018-01-20 10:00:00 8 hr time horizon... +2026-04-29 10:23:25,605 - __main__ - INFO - Finished processing 2018-01-17 09:00:00 2 hr time horizon... +2026-04-29 10:23:25,622 - __main__ - INFO - Processing values: 2018-01-10 02:00:00 10 hr time horizon... +/kfs2/projects/pvfleets24/repos/regrow/data/generate_herbie_forecasts.py:57: DeprecationWarning: The accessor `ds.herbie.nearest_points` is deprecated in favor of the `ds.herbie.pick_points` which uses the BallTree algorithm instead. + dsi = ds.herbie.nearest_points(points=points, +/kfs2/projects/pvfleets24/envs/regrow/lib/python3.12/site-packages/herbie/accessors.py:681: UserWarning: More than one time coordinate present for variable "tcc". + ds = ds.metpy.assign_y_x() +[2026-04-29T10:23:25.821] error: *** JOB 13573894 ON x1002c4s2b1n1 CANCELLED AT 2026-04-29T10:23:25 DUE to SIGNAL Terminated ***